pokerogue/test/testUtils/mocks/mockGameObject.ts
2025-05-29 20:27:39 -07:00

8 lines
158 B
TypeScript

export interface MockGameObject {
name: string;
active: boolean;
destroy?(): void;
setActive(active: boolean): this;
setName(name: string): this;
}