├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── ecs.nim ├── ecs.nimble ├── ecs ├── algorithms.nim ├── components.nim ├── typelists.nim └── types.nim └── tests └── tcommon.nim /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yglukhov/ecs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | nimcache/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yglukhov/ecs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yglukhov/ecs/HEAD/README.md -------------------------------------------------------------------------------- /ecs.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yglukhov/ecs/HEAD/ecs.nim -------------------------------------------------------------------------------- /ecs.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yglukhov/ecs/HEAD/ecs.nimble -------------------------------------------------------------------------------- /ecs/algorithms.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yglukhov/ecs/HEAD/ecs/algorithms.nim -------------------------------------------------------------------------------- /ecs/components.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yglukhov/ecs/HEAD/ecs/components.nim -------------------------------------------------------------------------------- /ecs/typelists.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yglukhov/ecs/HEAD/ecs/typelists.nim -------------------------------------------------------------------------------- /ecs/types.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yglukhov/ecs/HEAD/ecs/types.nim -------------------------------------------------------------------------------- /tests/tcommon.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yglukhov/ecs/HEAD/tests/tcommon.nim --------------------------------------------------------------------------------