1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/fireworks/modules/objects/constants.v
2021-01-26 23:13:11 +02:00

13 lines
220 B
V

module objects
const (
width = 800
height = 800
gravity = Vector{0, -0.03}
age_rate = 1
offspring_count = 100
rocket_radius = 5
particle_radius = 2.5
drag = 0.98
)