mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-19 16:27:12 +00:00
14 lines
363 B
TypeScript
14 lines
363 B
TypeScript
import type { MockGameObject } from "./mockGameObject";
|
|
|
|
/** Mocks video-related stuff */
|
|
export class MockVideoGameObject implements MockGameObject {
|
|
public name: string;
|
|
|
|
public play = () => null;
|
|
public stop = () => this;
|
|
public setOrigin = () => null;
|
|
public setScale = () => null;
|
|
public setVisible = () => null;
|
|
public setLoop = () => null;
|
|
}
|