platjs
Version:
Simple engine for platformer physics and rendering
9 lines (7 loc) • 340 B
text/typescript
import GameObject from "./object";
import ControlledBody from "./controlledBody";
import PhysicalBody from "./physicalBody";
import Renderer from "./renderer";
import StaticBody from "./staticBody";
import loadImages from "./util/imageLoader";
export { Renderer, ControlledBody, PhysicalBody, loadImages, StaticBody, GameObject };