Files
gorpg/konstructor/playground.go

13 lines
180 B
Go

package konstructor
type PlaygroundObject struct {
Image string
PosX int
PosY int
}
type Playground struct {
Background string
Objects []PlaygroundObject
}