Fix mock video object return methods

This commit is contained in:
Sirz Benjie 2025-05-28 12:55:34 -05:00
parent ee7e2094e1
commit df361accd7
No known key found for this signature in database
GPG Key ID: 38AC42D68CF5E138

View File

@ -5,7 +5,7 @@ export class MockVideoGameObject implements MockGameObject {
public name: string;
public active = true;
public play = () => null;
public play = () => this;
public stop = () => this;
public setOrigin = () => this;
public setScale = () => this;