UNPKG

aurora

Version:

A small entity-component-system game engine/framework.

15 lines (12 loc) 542 B
// Aurora is distributed under the MIT license. // Core export { default as Component } from "./core/Component"; export { default as Engine } from "./core/Engine"; export { default as Entity } from "./core/Entity"; export { default as State } from "./core/State"; export { default as System } from "./core/System"; // Utils export { default as capitalize } from "./utils/capitalize"; export { default as copy } from "./utils/copy"; export { default as getItem } from "./utils/getItem"; export { default as hasItem } from "./utils/hasItem";