mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
14 lines
288 B
TypeScript
14 lines
288 B
TypeScript
import { QuestEditAction } from "./QuestEditAction";
|
|
|
|
export class EditNameAction extends QuestEditAction<string> {
|
|
readonly description = "Edit name";
|
|
|
|
undo(): void {
|
|
this.quest.set_name(this.old);
|
|
}
|
|
|
|
redo(): void {
|
|
this.quest.set_name(this.new);
|
|
}
|
|
}
|