mirror of
https://github.com/GoodStartLabs/AI_Diplomacy.git
synced 2026-04-30 17:40:47 +00:00
Added some more stuff
Signed-off-by: Tyler Marques <me@tylermarques.com>
This commit is contained in:
parent
eebfba0a1b
commit
cbe6c5f8d0
6 changed files with 980 additions and 24 deletions
|
|
@ -8,6 +8,7 @@ import { initDebugProvinceHighlighting } from "./provinceHighlight";
|
|||
import { initInstantChatTool as initInstantModeTool } from "./instantMode";
|
||||
import { initSpeechToggleTool } from "./speechToggle";
|
||||
import { initShowRandomMomentTool, updateMomentStatus } from "./showRandomMoment";
|
||||
import { initPhaseJumpTool, updatePhaseJumpOptions } from "./phaseJump";
|
||||
|
||||
export class DebugMenu {
|
||||
private toggleBtn: HTMLButtonElement;
|
||||
|
|
@ -176,6 +177,7 @@ export class DebugMenu {
|
|||
private initTools(): void {
|
||||
initSpeechToggleTool(this);
|
||||
initInstantModeTool(this);
|
||||
initPhaseJumpTool(this);
|
||||
initNextMomentTool(this);
|
||||
initShowRandomMomentTool(this);
|
||||
initDebugProvinceHighlighting()
|
||||
|
|
@ -184,6 +186,7 @@ export class DebugMenu {
|
|||
public updateTools(): void {
|
||||
updateNextMomentDisplay();
|
||||
updateMomentStatus();
|
||||
updatePhaseJumpOptions();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue