mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
16 lines
595 B
TypeScript
16 lines
595 B
TypeScript
import { QuestEventModel } from "./QuestEventModel";
|
|
import { ListProperty } from "../../core/observable/property/list/ListProperty";
|
|
import { WritableListProperty } from "../../core/observable/property/list/WritableListProperty";
|
|
import { list_property } from "../../core/observable";
|
|
|
|
export class QuestEventChainModel {
|
|
private readonly _events: WritableListProperty<QuestEventModel>;
|
|
|
|
readonly events: ListProperty<QuestEventModel>;
|
|
|
|
constructor(events: QuestEventModel[]) {
|
|
this._events = list_property(undefined, ...events);
|
|
this.events = this._events;
|
|
}
|
|
}
|