1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/fireworks/modules/objects/color.v
Alexander Medvednikov d4a0d6f73c all: byte => u8
2022-04-15 14:58:56 +03:00

13 lines
140 B
V

module objects
import gx
import rand
pub fn random_color() gx.Color {
return gx.Color{
r: rand.u8()
g: rand.u8()
b: rand.u8()
}
}