mirror of
https://github.com/make-42/xyosc
synced 2024-11-23 01:30:09 +01:00
12 lines
144 B
Go
12 lines
144 B
Go
|
package particles
|
||
|
|
||
|
type Particle struct {
|
||
|
X float32
|
||
|
Y float32
|
||
|
VX float32
|
||
|
VY float32
|
||
|
Size float32
|
||
|
}
|
||
|
|
||
|
var Particles = []Particle{}
|