13 lines
180 B
Go
Executable File
13 lines
180 B
Go
Executable File
package konstructor
|
|
|
|
type PlaygroundObject struct {
|
|
Image string
|
|
PosX int
|
|
PosY int
|
|
}
|
|
|
|
type Playground struct {
|
|
Background string
|
|
Objects []PlaygroundObject
|
|
}
|