mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-13 05:15:17 +00:00
9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
import BattleScene from "#app/battle-scene.js";
|
|
import { MessagePhase } from "./message-phase";
|
|
|
|
export class TestMessagePhase extends MessagePhase {
|
|
constructor(scene: BattleScene, message: string) {
|
|
super(scene, message, null, true);
|
|
}
|
|
}
|