mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
9 lines
276 B
TypeScript
9 lines
276 B
TypeScript
import { ObservableQuestEntity } from "./ObservableQuestEntity";
|
|
import { NpcType } from "../../core/data_formats/parsing/quest/npc_types";
|
|
|
|
export class ObservableQuestNpc extends ObservableQuestEntity<NpcType> {
|
|
constructor(type: NpcType) {
|
|
super(type);
|
|
}
|
|
}
|