├── .gitignore ├── APACHE ├── LICENSE ├── MIT ├── NOTICE ├── README.md ├── dub.json └── source └── star └── entity ├── engine.d ├── entity.d ├── event.d ├── package.d └── system.d /.gitignore: -------------------------------------------------------------------------------- 1 | .dub/ 2 | bin/ 3 | docs/ 4 | dub.selections.json -------------------------------------------------------------------------------- /APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslzhu/star-entity/HEAD/APACHE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslzhu/star-entity/HEAD/LICENSE -------------------------------------------------------------------------------- /MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslzhu/star-entity/HEAD/MIT -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslzhu/star-entity/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslzhu/star-entity/HEAD/README.md -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslzhu/star-entity/HEAD/dub.json -------------------------------------------------------------------------------- /source/star/entity/engine.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslzhu/star-entity/HEAD/source/star/entity/engine.d -------------------------------------------------------------------------------- /source/star/entity/entity.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslzhu/star-entity/HEAD/source/star/entity/entity.d -------------------------------------------------------------------------------- /source/star/entity/event.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslzhu/star-entity/HEAD/source/star/entity/event.d -------------------------------------------------------------------------------- /source/star/entity/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslzhu/star-entity/HEAD/source/star/entity/package.d -------------------------------------------------------------------------------- /source/star/entity/system.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jameslzhu/star-entity/HEAD/source/star/entity/system.d --------------------------------------------------------------------------------