├── .gitattributes ├── .gitignore ├── HypEcs.csproj ├── HypEcs.sln.DotSettings.user ├── LICENSE ├── README.md └── src ├── Archetypes.cs ├── Entity.cs ├── Identity.cs ├── ListPool.cs ├── Mask.cs ├── MaskPool.cs ├── Query.cs ├── QueryBuilder.cs ├── RefValueTuple.cs ├── StorageType.cs ├── System.cs ├── Table.cs └── World.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/.gitignore -------------------------------------------------------------------------------- /HypEcs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/HypEcs.csproj -------------------------------------------------------------------------------- /HypEcs.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/HypEcs.sln.DotSettings.user -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/README.md -------------------------------------------------------------------------------- /src/Archetypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/Archetypes.cs -------------------------------------------------------------------------------- /src/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/Entity.cs -------------------------------------------------------------------------------- /src/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/Identity.cs -------------------------------------------------------------------------------- /src/ListPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/ListPool.cs -------------------------------------------------------------------------------- /src/Mask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/Mask.cs -------------------------------------------------------------------------------- /src/MaskPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/MaskPool.cs -------------------------------------------------------------------------------- /src/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/Query.cs -------------------------------------------------------------------------------- /src/QueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/QueryBuilder.cs -------------------------------------------------------------------------------- /src/RefValueTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/RefValueTuple.cs -------------------------------------------------------------------------------- /src/StorageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/StorageType.cs -------------------------------------------------------------------------------- /src/System.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/System.cs -------------------------------------------------------------------------------- /src/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/Table.cs -------------------------------------------------------------------------------- /src/World.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Byteron/HypEcs/HEAD/src/World.cs --------------------------------------------------------------------------------