@erikyuzwa/rogue-punk
Version:
a JavaScript library to help you build your roguelike adventures
13 lines (12 loc) • 332 B
TypeScript
import { Stage } from './Stage';
import { World } from './World';
import { StageOptions } from './StageOptions';
export declare class Engine {
private stage;
private currentWorld;
constructor(options: StageOptions);
init(): void;
getStage(): Stage;
refresh(): void;
switchWorld(newWorld: World): void;
}