15 lines
191 B
Go
15 lines
191 B
Go
package konstructor
|
|
|
|
type ItemTypeMap map[string]ItemType
|
|
|
|
type ItemType struct {
|
|
ID string
|
|
Render Render
|
|
}
|
|
|
|
type Item struct {
|
|
ID string
|
|
Type ItemType
|
|
Position Position
|
|
}
|