UNPKG

@moderrkowo/jsgl

Version:

Client-side JavaScript library for creating web 2D games. Focusing at objective game.

10 lines (9 loc) 296 B
import { DrawSettings } from '../structs/DrawSettings'; import { ShapeType } from '../enums/ShapeType'; import { Shape } from './Shape'; /** * @group Game Objects */ export declare class SimpleShape extends Shape { constructor(shapeType: ShapeType, drawSettings?: DrawSettings); }