konstructor file prefixes refactor

This commit is contained in:
2023-07-07 01:07:50 +02:00
parent faa6f00891
commit 8d2fcabc4b
14 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package konstructor
type Position struct {
X int
Y int
Z int
}
type Playground struct {
Render Render
Objects []Object
NPCs []NPC
Items []Item
}
type Level struct {
ID string
Name string
Playgrounds []Playground
}