mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-07 02:17:47 +00:00
* move test folder * Update vitest files * rename test/utils to test/testUtils * Remove stray utils/gameManager Got put back from a rebase
16 lines
383 B
TypeScript
16 lines
383 B
TypeScript
import type { MockGameObject } from "./mockGameObject";
|
|
|
|
/** Mocks video-related stuff */
|
|
export class MockVideoGameObject implements MockGameObject {
|
|
public name: string;
|
|
|
|
constructor() {}
|
|
|
|
public play = () => null;
|
|
public stop = () => this;
|
|
public setOrigin = () => null;
|
|
public setScale = () => null;
|
|
public setVisible = () => null;
|
|
public setLoop = () => null;
|
|
}
|