mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-21 09:02:47 +02:00
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
export interface MockGameObject {
|
|
name: string;
|
|
active: boolean;
|
|
destroy?(): void;
|
|
setActive(active: boolean): this;
|
|
setName(name: string): this;
|
|
}
|