15 lines
201 B
Go
15 lines
201 B
Go
package konstructor
|
|
|
|
type ObjectTypeMap map[string]ObjectType
|
|
|
|
type ObjectType struct {
|
|
ID string
|
|
Render Render
|
|
}
|
|
|
|
type Object struct {
|
|
ID string
|
|
Type ObjectType
|
|
Position Position
|
|
}
|