├── .claude └── settings.local.json ├── .editorconfig ├── .github └── workflows │ ├── deploy.yml │ └── test.yml ├── .gitignore ├── CLAUDE.md ├── LICENSE ├── README.md ├── TinyEcs.slnx ├── samples ├── MyBattleground │ ├── CommandsExample.cs │ ├── MyBattleground.csproj │ ├── ObserverExample.cs │ ├── ParallelSystemsExample.cs │ ├── PerformanceTinyEcsExample.cs │ ├── Program.cs │ ├── StageFirstAPIExample.cs │ ├── SystemParamsExample.cs │ └── TinyEcsExample.cs └── TinyEcsGame │ ├── Content │ ├── fonts │ │ └── Roboto-Regular.ttf │ └── pepe.png │ ├── Program.cs │ └── TinyEcsGame.csproj ├── scripts └── pack.sh ├── src ├── TinyEcs.Bevy │ ├── BevyApp.cs │ ├── BevyBundle.cs │ ├── BevyFilters.cs │ ├── BevyInterfaces.cs │ ├── BevyObservers.cs │ ├── BevySystemParams.cs │ ├── TinyEcs.Bevy.Data.g.cs │ ├── TinyEcs.Bevy.Data.tt │ ├── TinyEcs.Bevy.EntityObservers.g.cs │ ├── TinyEcs.Bevy.EntityObservers.tt │ ├── TinyEcs.Bevy.Filter.g.cs │ ├── TinyEcs.Bevy.Filter.tt │ ├── TinyEcs.Bevy.Observers.g.cs │ ├── TinyEcs.Bevy.Observers.tt │ ├── TinyEcs.Bevy.SystemAdapters.g.cs │ ├── TinyEcs.Bevy.SystemAdapters.tt │ ├── TinyEcs.Bevy.SystemExtensions.g.cs │ ├── TinyEcs.Bevy.SystemExtensions.tt │ └── TinyEcs.Bevy.csproj └── TinyEcs │ ├── Archetype.cs │ ├── ComponentComparer.cs │ ├── Default.cs │ ├── DictionarySlim.cs │ ├── DotnetAddons.cs │ ├── EcsAssert.cs │ ├── EcsConst.cs │ ├── EcsID.cs │ ├── EcsOp.cs │ ├── EntityMapper.cs │ ├── EntityView.cs │ ├── Hashing.cs │ ├── Lookup.cs │ ├── Match.cs │ ├── Ptr.cs │ ├── Query.cs │ ├── QueryAccessMetadata.cs │ ├── Renting.cs │ ├── SparseSet.cs │ ├── Term.cs │ ├── TinyEcs.Archetypes.g.cs │ ├── TinyEcs.Archetypes.tt │ ├── TinyEcs.csproj │ ├── Usings.cs │ ├── Utils.cs │ ├── World.Deferred.cs │ ├── World.Public.cs │ ├── World.Relationship.cs │ └── World.cs └── tests ├── Archetype.cs ├── ArchetypeGraphTest.cs ├── ArchetypeOperations.cs ├── BevyApp.cs ├── ChangeDetection.cs ├── ComponentOperations.cs ├── Components.cs ├── Context.cs ├── Deferred.cs ├── Entity.cs ├── EntityRecycling.cs ├── FilterMatch.cs ├── ObserverCommandsTest.cs ├── Query.cs ├── Relation.cs ├── SparseSet.cs ├── SystemOrderingBugTest.cs ├── TinyEcs.Tests.csproj ├── Usings.cs ├── World.cs └── xunit.runner.json /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/README.md -------------------------------------------------------------------------------- /TinyEcs.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/TinyEcs.slnx -------------------------------------------------------------------------------- /samples/MyBattleground/CommandsExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/MyBattleground/CommandsExample.cs -------------------------------------------------------------------------------- /samples/MyBattleground/MyBattleground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/MyBattleground/MyBattleground.csproj -------------------------------------------------------------------------------- /samples/MyBattleground/ObserverExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/MyBattleground/ObserverExample.cs -------------------------------------------------------------------------------- /samples/MyBattleground/ParallelSystemsExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/MyBattleground/ParallelSystemsExample.cs -------------------------------------------------------------------------------- /samples/MyBattleground/PerformanceTinyEcsExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/MyBattleground/PerformanceTinyEcsExample.cs -------------------------------------------------------------------------------- /samples/MyBattleground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/MyBattleground/Program.cs -------------------------------------------------------------------------------- /samples/MyBattleground/StageFirstAPIExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/MyBattleground/StageFirstAPIExample.cs -------------------------------------------------------------------------------- /samples/MyBattleground/SystemParamsExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/MyBattleground/SystemParamsExample.cs -------------------------------------------------------------------------------- /samples/MyBattleground/TinyEcsExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/MyBattleground/TinyEcsExample.cs -------------------------------------------------------------------------------- /samples/TinyEcsGame/Content/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/TinyEcsGame/Content/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /samples/TinyEcsGame/Content/pepe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/TinyEcsGame/Content/pepe.png -------------------------------------------------------------------------------- /samples/TinyEcsGame/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/TinyEcsGame/Program.cs -------------------------------------------------------------------------------- /samples/TinyEcsGame/TinyEcsGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/samples/TinyEcsGame/TinyEcsGame.csproj -------------------------------------------------------------------------------- /scripts/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/scripts/pack.sh -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/BevyApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/BevyApp.cs -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/BevyBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/BevyBundle.cs -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/BevyFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/BevyFilters.cs -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/BevyInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/BevyInterfaces.cs -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/BevyObservers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/BevyObservers.cs -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/BevySystemParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/BevySystemParams.cs -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.Data.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.Data.g.cs -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.Data.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.Data.tt -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.EntityObservers.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.EntityObservers.g.cs -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.EntityObservers.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.EntityObservers.tt -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.Filter.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.Filter.g.cs -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.Filter.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.Filter.tt -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.Observers.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.Observers.g.cs -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.Observers.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.Observers.tt -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.SystemAdapters.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.SystemAdapters.g.cs -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.SystemAdapters.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.SystemAdapters.tt -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.SystemExtensions.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.SystemExtensions.g.cs -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.SystemExtensions.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.SystemExtensions.tt -------------------------------------------------------------------------------- /src/TinyEcs.Bevy/TinyEcs.Bevy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs.Bevy/TinyEcs.Bevy.csproj -------------------------------------------------------------------------------- /src/TinyEcs/Archetype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/Archetype.cs -------------------------------------------------------------------------------- /src/TinyEcs/ComponentComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/ComponentComparer.cs -------------------------------------------------------------------------------- /src/TinyEcs/Default.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/Default.cs -------------------------------------------------------------------------------- /src/TinyEcs/DictionarySlim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/DictionarySlim.cs -------------------------------------------------------------------------------- /src/TinyEcs/DotnetAddons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/DotnetAddons.cs -------------------------------------------------------------------------------- /src/TinyEcs/EcsAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/EcsAssert.cs -------------------------------------------------------------------------------- /src/TinyEcs/EcsConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/EcsConst.cs -------------------------------------------------------------------------------- /src/TinyEcs/EcsID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/EcsID.cs -------------------------------------------------------------------------------- /src/TinyEcs/EcsOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/EcsOp.cs -------------------------------------------------------------------------------- /src/TinyEcs/EntityMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/EntityMapper.cs -------------------------------------------------------------------------------- /src/TinyEcs/EntityView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/EntityView.cs -------------------------------------------------------------------------------- /src/TinyEcs/Hashing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/Hashing.cs -------------------------------------------------------------------------------- /src/TinyEcs/Lookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/Lookup.cs -------------------------------------------------------------------------------- /src/TinyEcs/Match.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/Match.cs -------------------------------------------------------------------------------- /src/TinyEcs/Ptr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/Ptr.cs -------------------------------------------------------------------------------- /src/TinyEcs/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/Query.cs -------------------------------------------------------------------------------- /src/TinyEcs/QueryAccessMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/QueryAccessMetadata.cs -------------------------------------------------------------------------------- /src/TinyEcs/Renting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/Renting.cs -------------------------------------------------------------------------------- /src/TinyEcs/SparseSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/SparseSet.cs -------------------------------------------------------------------------------- /src/TinyEcs/Term.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/Term.cs -------------------------------------------------------------------------------- /src/TinyEcs/TinyEcs.Archetypes.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/TinyEcs.Archetypes.g.cs -------------------------------------------------------------------------------- /src/TinyEcs/TinyEcs.Archetypes.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/TinyEcs.Archetypes.tt -------------------------------------------------------------------------------- /src/TinyEcs/TinyEcs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/TinyEcs.csproj -------------------------------------------------------------------------------- /src/TinyEcs/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/Usings.cs -------------------------------------------------------------------------------- /src/TinyEcs/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/Utils.cs -------------------------------------------------------------------------------- /src/TinyEcs/World.Deferred.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/World.Deferred.cs -------------------------------------------------------------------------------- /src/TinyEcs/World.Public.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/World.Public.cs -------------------------------------------------------------------------------- /src/TinyEcs/World.Relationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/World.Relationship.cs -------------------------------------------------------------------------------- /src/TinyEcs/World.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/src/TinyEcs/World.cs -------------------------------------------------------------------------------- /tests/Archetype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/Archetype.cs -------------------------------------------------------------------------------- /tests/ArchetypeGraphTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/ArchetypeGraphTest.cs -------------------------------------------------------------------------------- /tests/ArchetypeOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/ArchetypeOperations.cs -------------------------------------------------------------------------------- /tests/BevyApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/BevyApp.cs -------------------------------------------------------------------------------- /tests/ChangeDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/ChangeDetection.cs -------------------------------------------------------------------------------- /tests/ComponentOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/ComponentOperations.cs -------------------------------------------------------------------------------- /tests/Components.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/Components.cs -------------------------------------------------------------------------------- /tests/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/Context.cs -------------------------------------------------------------------------------- /tests/Deferred.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/Deferred.cs -------------------------------------------------------------------------------- /tests/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/Entity.cs -------------------------------------------------------------------------------- /tests/EntityRecycling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/EntityRecycling.cs -------------------------------------------------------------------------------- /tests/FilterMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/FilterMatch.cs -------------------------------------------------------------------------------- /tests/ObserverCommandsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/ObserverCommandsTest.cs -------------------------------------------------------------------------------- /tests/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/Query.cs -------------------------------------------------------------------------------- /tests/Relation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/Relation.cs -------------------------------------------------------------------------------- /tests/SparseSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/SparseSet.cs -------------------------------------------------------------------------------- /tests/SystemOrderingBugTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/SystemOrderingBugTest.cs -------------------------------------------------------------------------------- /tests/TinyEcs.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/TinyEcs.Tests.csproj -------------------------------------------------------------------------------- /tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/Usings.cs -------------------------------------------------------------------------------- /tests/World.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/World.cs -------------------------------------------------------------------------------- /tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreakarasho/TinyEcs/HEAD/tests/xunit.runner.json --------------------------------------------------------------------------------