0.0.12 • Published 5 years ago

@eix-js/core v0.0.12

Weekly downloads
1
License
SEE LICENSE IN LI...
Repository
github
Last release
5 years ago

Build Status License Version Minzipped size size

Eix-core

the core of the eix game engine

Getting started

To get started, you need to have npm and node installed on your machine, and then install @eix/core and ts-node with:

npm i @eix/core ts-node

Create an index.ts file, and import the library:

import { Ecs } from '@eix/core'

Ecs is the main class exposed by this engine:

const ecs = new Ecs()

ecs.addEntity({
    prop: true
})

ecs
    .flag('prop')
    .get<{prop:boolean}>()
    .each({prop} => console.log(prop)) // true

Playing around with the source:

First, clone this repo:

git clone "https://github.com/eix-js/core"

Then install the dependencies:

npm install

You can use npm test to run all tests and npm run docs to generate docs.

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago