daily commit

This commit is contained in:
portakal 2026-05-24 12:37:14 +03:00
commit f463e71c28
6 changed files with 102 additions and 0 deletions

View file

@ -0,0 +1,17 @@
package objects
type Player struct {
Name string
X float64
Y float64
Radius float64
Direction float64
Speed float64
}
type Spore struct {
id uint64
X float64
Y float64
Radius float64
}