Skip to content

Commit

Permalink
Moved packages to shorter folders.
Browse files Browse the repository at this point in the history
Published ecs and bitmask repos.
Fixed component repo.
  • Loading branch information
serbanghita committed Jun 2, 2024
1 parent 3658c4b commit 17a6bc9
Show file tree
Hide file tree
Showing 89 changed files with 491 additions and 624 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
.tmp
node_modules
.nx/cache
packages/glhf-demo/assets/*
packages/glhf-demo/build
packages/demo/assets/*
packages/demo/build
packages/*/src/*.js
packages/*/src/*.js.map
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ glhf

## Packages

* [glhf-assets](./packages/glhf-assets) - Helper to load assets files (JSON, Images).
* [glhf-bitmask](./packages/glhf-bitmask) - Bitmask library for fast bitwise operations.
* [glfh-component](./packages/glhf-component) - Generic opinionated ECS Components.
* [glhf-ecs](./packages/glhf-ecs) - ECS Library that implements the following classes Entity, Component, System, Query, World
* [glhf-fsm](./packages/glhf-fsm) - Finite State Machine implementation.
* [glhf-input](./packages/glhf-input) - Implementation of inputs like Keyboard, Mouse and Controller.
* [glhf-renderer](./packages/glhf-renderer) - Rendering UI and Canvas utilities.
* [glhf-assets](./packages/assets) - Helper to load assets files (JSON, Images).
* [glhf-bitmask](./packages/bitmask) - Bitmask library for fast bitwise operations.
* [glfh-component](./packages/component) - Generic opinionated ECS Components.
* [glhf-ecs](./packages/ecs) - ECS Library that implements the following classes Entity, Component, System, Query, World
* [glhf-fsm](./packages/fsm) - Finite State Machine implementation.
* [glhf-input](./packages/input) - Implementation of inputs like Keyboard, Mouse and Controller.
* [glhf-renderer](./packages/renderer) - Rendering UI and Canvas utilities.

## Demo

* [glhf-demo](./packages/glhf-demo) - A demo of a 2d game implementation using glhf.js library
* [glhf-demo](./packages/demo) - A demo of a 2d game implementation using glhf.js library

## Development

Expand Down
Loading

0 comments on commit 17a6bc9

Please sign in to comment.