13 lines
169 B
Go
13 lines
169 B
Go
package entity
|
|
|
|
type ItemType struct {
|
|
ID string
|
|
RenderOptions RenderOptions
|
|
}
|
|
|
|
type Item struct {
|
|
ID string
|
|
Type ItemType
|
|
Position Position
|
|
}
|