v/examples/fireworks/modules/objects/color.v

13 lines
140 B
V
Raw Normal View History

module objects
import gx
import rand
pub fn random_color() gx.Color {
return gx.Color{
2022-04-15 13:58:56 +02:00
r: rand.u8()
g: rand.u8()
b: rand.u8()
}
}