Files
gorpg/konstructor/entity/entity.settings.go
2023-07-04 22:58:23 +02:00

12 lines
136 B
Go

package entity
type ScreenSettings struct {
Width int
Height int
}
type Settings struct {
Name string
Screen *ScreenSettings
}