13 lines
166 B
Go
13 lines
166 B
Go
package entity
|
|
|
|
type NPCType struct {
|
|
ID string
|
|
RenderOptions RenderOptions
|
|
}
|
|
|
|
type NPC struct {
|
|
ID string
|
|
Type NPCType
|
|
Position Position
|
|
}
|