21 lines
393 B
Go
21 lines
393 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
|
|
}
|
|
|
|
func GetPlatformTypeImagePath(name PlatformTypeMapKey) string {
|
|
return GetObjectDirectory(PlatformObjectType) + string(name) + ".png"
|
|
}
|