merge entity package to konstructor

This commit is contained in:
2023-07-06 23:33:43 +02:00
parent 2fcf6f4fdc
commit 38b8053223
28 changed files with 89 additions and 94 deletions

View File

@@ -0,0 +1,24 @@
package konstructor
type KeyMap struct {
Up any
Down any
Right any
Left any
Action0 any
Action1 any
Action2 any
Action3 any
}
type ScreenSettings struct {
Width int
Height int
Scale int
}
type Settings struct {
Name string
Screen *ScreenSettings
KeyMap KeyMap
}