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

24
konstructor/settings.go Normal file
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
}