Files
gorpg/konstructor/entity/entity.npc.go

13 lines
145 B
Go

package entity
type NPCType struct {
ID string
Render Render
}
type NPC struct {
ID string
Type NPCType
Position Position
}