phaser/v3/typings/gameobjects/container/Container.d.ts

6 lines
175 B
TypeScript
Raw Normal View History

2017-01-16 21:43:07 +00:00
import GameObject from '../GameObject';
export default class Container extends GameObject {
constructor(state: any, parent: any, x: any, y: any);
preUpdate(): void;
}