daily commit
This commit is contained in:
parent
6ccd33998d
commit
f463e71c28
6 changed files with 102 additions and 0 deletions
17
backend/objects/gameObjects.go
Normal file
17
backend/objects/gameObjects.go
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue