altycoon-engine-workspace
v0.1.0
Published
Reusable ES-module simulation primitives for persistent economy, tycoon, incremental, and management games. It has no UI, database, browser, or theme dependency.
Downloads
35
Readme
Economic Game Engine
Reusable ES-module simulation primitives for persistent economy, tycoon, incremental, and management games. It has no UI, database, browser, or theme dependency.
Quick start
const engine = new GameEngine({ definition, clock, persistence })
.use(new InventorySystem())
.use(new EconomySystem())
.use(new ProductionSystem());
await engine.initialize();Run npm install then npm test. See Factory Demo, API, and architecture.
An application owns its game content and persistence implementation. The included InMemoryPersistence is designed for tests and demos only.
