Files
gorpg/konstructor/entity.item.go

13 lines
153 B
Go

package konstructor
type ItemType struct {
ID string
Render Render
}
type Item struct {
ID string
Type ItemType
Position Position
}