npc-relations
Version:
Library with classes to represent simple relations between NPCs.
15 lines • 354 B
TypeScript
export declare enum Familiar {
None = 0,
Parent = 1,
BrotherOrSister = 2,
SonOrDaughter = 3,
Grandparent = 4,
UncleOrAunt = 5,
NephewOrNiece = 6,
Grandchild = 7,
Cousin = 8
}
export declare class FamiliarDomain {
static opposite(familiar: Familiar): Familiar;
}
//# sourceMappingURL=familiar.d.ts.map