UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

15 lines (9 loc) 288 B
import { System } from "../../src/engine/ecs/System.js"; import EditorEntity from "./EditorEntity.js"; class EditorEntitySystem extends System { constructor() { super(); this.dependencies = [EditorEntity]; } } export default EditorEntitySystem;