UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

15 lines (9 loc) 346 B
import {AchievementGateway} from "../achievements/AchievementGateway"; import Storage from "../save/Storage"; export class EnginePlatform { getStorage(): Storage; getAchievementGateway(): AchievementGateway; pickDefaultLocale(options: string[]): string; startup(): Promise<any>; shutdown(): Promise<any>; }