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