17 lines
220 B
Go
17 lines
220 B
Go
package konstructor
|
|
|
|
type NPCTypeMapKey string
|
|
|
|
type NPCTypeMap map[NPCTypeMapKey]NPCType
|
|
|
|
type NPCType struct {
|
|
ID string
|
|
Render Render
|
|
}
|
|
|
|
type NPC struct {
|
|
ID string
|
|
Type NPCType
|
|
Position Position
|
|
}
|