mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
5 lines
175 B
TypeScript
5 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;
|
|
}
|