12 lines
136 B
Go
12 lines
136 B
Go
package entity
|
|
|
|
type ScreenSettings struct {
|
|
Width int
|
|
Height int
|
|
}
|
|
|
|
type Settings struct {
|
|
Name string
|
|
Screen *ScreenSettings
|
|
}
|