17 lines
255 B
Go
17 lines
255 B
Go
package konstructor
|
|
|
|
type PlatformTypeMapKey string
|
|
|
|
type PlatformTypeMap map[PlatformTypeMapKey]PlatformType
|
|
|
|
type PlatformType struct {
|
|
ID string
|
|
Render Render
|
|
}
|
|
|
|
type Platform struct {
|
|
ID string
|
|
Type PlatformType
|
|
Position Position
|
|
}
|