mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
14 lines
280 B
TypeScript
14 lines
280 B
TypeScript
import { QuestEditAction } from "./QuestEditAction";
|
|
|
|
export class EditIdAction extends QuestEditAction<number> {
|
|
readonly description = "Edit ID";
|
|
|
|
undo(): void {
|
|
this.quest.set_id(this.old);
|
|
}
|
|
|
|
redo(): void {
|
|
this.quest.set_id(this.new);
|
|
}
|
|
}
|