mirror of
https://github.com/photonstorm/phaser
synced 2024-12-19 09:34:02 +00:00
6 lines
175 B
TypeScript
6 lines
175 B
TypeScript
|
import GameObject from '../GameObject';
|
||
|
export default class Container extends GameObject {
|
||
|
constructor(state: any, parent: any, x: any, y: any);
|
||
|
preUpdate(): void;
|
||
|
}
|