1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/sokol/particles/particle/color.v
2020-07-02 15:31:42 +03:00

13 lines
247 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 byte
g byte
b byte
a byte
}