1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/sokol/particles/modules/particle/color.v
2022-04-15 18:25:45 +03:00

13 lines
239 B
V

// Copyright(C) 2019 Lars Pontoppidan. All rights reserved.
// Use of this source code is governed by an MIT license file distributed with this software package
module particle
// * Color
pub struct Color {
mut:
r u8
g u8
b u8
a u8
}