ScreenType enum

This commit is contained in:
2023-07-05 22:35:14 +02:00
parent 2ea2554f73
commit aba36bfe1a
4 changed files with 21 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
package entity
type ScreenType string
const (
MenuScreenType ScreenType = "menu"
DialogScreenType ScreenType = "dialog"
PlaygroundScreenType ScreenType = "playground"
InventoryScreenType ScreenType = "inventory"
)