pokerogue/test/test-utils/mocks/mock-game-object.ts

8 lines
158 B
TypeScript

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