10 lines
122 B
Python
10 lines
122 B
Python
|
from language.languages import common
|
||
|
from npc import types
|
||
|
|
||
|
|
||
|
class Human(types.NPC):
|
||
|
language = common
|
||
|
|
||
|
|
||
|
NPC = Human
|