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

16 lines
251 B
V
Raw Normal View History

// 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
}