bozoecs
v0.0.30
Published
entity component system
Readme
BozoECS
'An ECS is a software architectural pattern, mainly for video game development to represent game world objects' - wiki. This ECS implementation is written in JavaScript.
Examples
Installation
With npm
step 1: install the package
npm install bozoecsstep 2: import in js
const ecs = require("bozoecs");With HTML
step 1: include BozoECS in HTML with unpkg
<script src="https://unpkg.com/bozoecs"></script>step 2: it is ready to use with the namespace BozoECS
console.log(bozoecs);