pokerogue/test/testUtils/mocks/mockVideoGameObject.ts
Sirz Benjie 408b66f913
[Misc][Refactor][GitHub] Ditch eslint for biome, and add a formatter (#5495)
Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
2025-03-09 14:13:25 -07:00

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;
}