move source files to src

This commit is contained in:
2023-07-08 12:20:34 +02:00
parent 6028c5770f
commit e5c2294f6c
43 changed files with 23 additions and 21 deletions

View File

@@ -0,0 +1,27 @@
package konstructor
type PlaygroundID string
type Position struct {
X int
Y int
Z int
}
type Playground struct {
ID PlaygroundID
Render Render
Platforms []Platform
NPCs []NPC
Items []Item
}
type Level struct {
ID string
Name string
Playgrounds []Playground
}
func GetPlaygroundImagePath(name PlaygroundID) string {
return "assets/images/playgrounds/" + string(name) + ".png"
}