├── .gitignore ├── LICENSE.txt ├── LICENSE_ENTITAS.txt ├── README.md ├── Rentitas.SampleApp ├── 1.unity ├── CoreComponents.cs ├── CoreKernel.cs ├── PoolTypes.cs ├── SampleApp.cs ├── SampleKernel.asset ├── Systems │ └── TimerSystem.cs └── ViewComponents.cs ├── Rentitas.Tests ├── Editor │ ├── ApplicationKernelsTests.cs │ ├── ComponentsPool.cs │ ├── EntityIndexesTests.cs │ ├── EntityTests.cs │ ├── Extra │ │ ├── Components.cs │ │ ├── ScenarioTestTypes.cs │ │ └── TestKernels.cs │ ├── GroupTests.cs │ ├── MultipleEntityIndexesTests.cs │ ├── RentitasPoolsTests.cs │ └── SystemsTests.cs └── Rentitas.Tests.csproj ├── Rentitas.Unity.Editor ├── Properties │ └── AssemblyInfo.cs ├── Rentitas.Unity.Editor.csproj └── VisualDebugging │ └── Editor │ ├── DebugScenarioBehaviourEditor.cs │ ├── InspectMonitor.cs │ └── SystemMonitor.cs ├── Rentitas.Unity ├── Properties │ └── AssemblyInfo.cs ├── Rentitas.Unity.csproj └── VisualDebugging │ ├── DebugScenario.cs │ ├── DebugScenarioBehaviour.cs │ ├── Editor │ ├── DebugScenarioBehaviourEditor.cs │ ├── InspectMonitor.cs │ └── SystemMonitor.cs │ ├── Inspection │ └── Inspect.cs │ ├── Scenario.cs │ └── SystemInfo.cs ├── Rentitas ├── Caching │ ├── ObjectCache.cs │ ├── ObjectPool.cs │ └── RentitasCache.cs ├── Core │ ├── Application │ │ └── Application.cs │ ├── BaseScenario.cs │ ├── Entities │ │ ├── Entity.cs │ │ ├── EntityEqualityComparer.cs │ │ ├── EntityEvents.cs │ │ ├── EntityFields.cs │ │ ├── EntityMethods.cs │ │ └── EntityOwner.cs │ ├── Groups │ │ ├── Group.cs │ │ ├── GroupEventType.cs │ │ ├── GroupEvents.cs │ │ ├── GroupFields.cs │ │ ├── GroupMethods.cs │ │ └── GroupOvserver.cs │ ├── Matchers │ │ ├── Matcher.cs │ │ ├── MatcherEquals.cs │ │ ├── MatcherFields.cs │ │ ├── MatcherMethods.cs │ │ └── TriggerOnEvent.cs │ ├── Pools │ │ ├── Pool.cs │ │ ├── PoolEvents.cs │ │ ├── PoolFactory.cs │ │ ├── PoolFields.cs │ │ ├── PoolMethods.cs │ │ └── Pools.cs │ └── ReactiveSystem.cs ├── Exceptions │ ├── EntityExceptions.cs │ └── PoolsExceptions.cs ├── Extensions │ └── MatcherExtensions.cs ├── Helpers │ ├── PoolSystem.cs │ └── RentitasUtility.cs ├── Interfaces │ ├── IApplication.cs │ ├── IComponent.cs │ ├── IEntity.cs │ ├── IEntityIndex.cs │ ├── IKernel.cs │ ├── IMatcher.cs │ ├── IPool.cs │ └── Systems │ │ ├── ICleanupSystem.cs │ │ ├── IDeinitializeSystem.cs │ │ ├── IDisableSystem.cs │ │ ├── IEnableSystem.cs │ │ ├── IExecuteSystem.cs │ │ ├── IInitializeSystem.cs │ │ ├── IReactiveSystem.cs │ │ ├── ISetApplication.cs │ │ ├── ISetPool.cs │ │ └── ISystem.cs ├── Rentitas.csproj └── Rentitas.sln └── Resources ├── Logotype.psd └── rentitas-logo200.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE_ENTITAS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/LICENSE_ENTITAS.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/README.md -------------------------------------------------------------------------------- /Rentitas.SampleApp/1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.SampleApp/1.unity -------------------------------------------------------------------------------- /Rentitas.SampleApp/CoreComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.SampleApp/CoreComponents.cs -------------------------------------------------------------------------------- /Rentitas.SampleApp/CoreKernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.SampleApp/CoreKernel.cs -------------------------------------------------------------------------------- /Rentitas.SampleApp/PoolTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.SampleApp/PoolTypes.cs -------------------------------------------------------------------------------- /Rentitas.SampleApp/SampleApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.SampleApp/SampleApp.cs -------------------------------------------------------------------------------- /Rentitas.SampleApp/SampleKernel.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.SampleApp/SampleKernel.asset -------------------------------------------------------------------------------- /Rentitas.SampleApp/Systems/TimerSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.SampleApp/Systems/TimerSystem.cs -------------------------------------------------------------------------------- /Rentitas.SampleApp/ViewComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.SampleApp/ViewComponents.cs -------------------------------------------------------------------------------- /Rentitas.Tests/Editor/ApplicationKernelsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Tests/Editor/ApplicationKernelsTests.cs -------------------------------------------------------------------------------- /Rentitas.Tests/Editor/ComponentsPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Tests/Editor/ComponentsPool.cs -------------------------------------------------------------------------------- /Rentitas.Tests/Editor/EntityIndexesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Tests/Editor/EntityIndexesTests.cs -------------------------------------------------------------------------------- /Rentitas.Tests/Editor/EntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Tests/Editor/EntityTests.cs -------------------------------------------------------------------------------- /Rentitas.Tests/Editor/Extra/Components.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Tests/Editor/Extra/Components.cs -------------------------------------------------------------------------------- /Rentitas.Tests/Editor/Extra/ScenarioTestTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Tests/Editor/Extra/ScenarioTestTypes.cs -------------------------------------------------------------------------------- /Rentitas.Tests/Editor/Extra/TestKernels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Tests/Editor/Extra/TestKernels.cs -------------------------------------------------------------------------------- /Rentitas.Tests/Editor/GroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Tests/Editor/GroupTests.cs -------------------------------------------------------------------------------- /Rentitas.Tests/Editor/MultipleEntityIndexesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Tests/Editor/MultipleEntityIndexesTests.cs -------------------------------------------------------------------------------- /Rentitas.Tests/Editor/RentitasPoolsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Tests/Editor/RentitasPoolsTests.cs -------------------------------------------------------------------------------- /Rentitas.Tests/Editor/SystemsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Tests/Editor/SystemsTests.cs -------------------------------------------------------------------------------- /Rentitas.Tests/Rentitas.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Tests/Rentitas.Tests.csproj -------------------------------------------------------------------------------- /Rentitas.Unity.Editor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity.Editor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rentitas.Unity.Editor/Rentitas.Unity.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity.Editor/Rentitas.Unity.Editor.csproj -------------------------------------------------------------------------------- /Rentitas.Unity.Editor/VisualDebugging/Editor/DebugScenarioBehaviourEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity.Editor/VisualDebugging/Editor/DebugScenarioBehaviourEditor.cs -------------------------------------------------------------------------------- /Rentitas.Unity.Editor/VisualDebugging/Editor/InspectMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity.Editor/VisualDebugging/Editor/InspectMonitor.cs -------------------------------------------------------------------------------- /Rentitas.Unity.Editor/VisualDebugging/Editor/SystemMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity.Editor/VisualDebugging/Editor/SystemMonitor.cs -------------------------------------------------------------------------------- /Rentitas.Unity/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rentitas.Unity/Rentitas.Unity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity/Rentitas.Unity.csproj -------------------------------------------------------------------------------- /Rentitas.Unity/VisualDebugging/DebugScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity/VisualDebugging/DebugScenario.cs -------------------------------------------------------------------------------- /Rentitas.Unity/VisualDebugging/DebugScenarioBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity/VisualDebugging/DebugScenarioBehaviour.cs -------------------------------------------------------------------------------- /Rentitas.Unity/VisualDebugging/Editor/DebugScenarioBehaviourEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity/VisualDebugging/Editor/DebugScenarioBehaviourEditor.cs -------------------------------------------------------------------------------- /Rentitas.Unity/VisualDebugging/Editor/InspectMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity/VisualDebugging/Editor/InspectMonitor.cs -------------------------------------------------------------------------------- /Rentitas.Unity/VisualDebugging/Editor/SystemMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity/VisualDebugging/Editor/SystemMonitor.cs -------------------------------------------------------------------------------- /Rentitas.Unity/VisualDebugging/Inspection/Inspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity/VisualDebugging/Inspection/Inspect.cs -------------------------------------------------------------------------------- /Rentitas.Unity/VisualDebugging/Scenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity/VisualDebugging/Scenario.cs -------------------------------------------------------------------------------- /Rentitas.Unity/VisualDebugging/SystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas.Unity/VisualDebugging/SystemInfo.cs -------------------------------------------------------------------------------- /Rentitas/Caching/ObjectCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Caching/ObjectCache.cs -------------------------------------------------------------------------------- /Rentitas/Caching/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Caching/ObjectPool.cs -------------------------------------------------------------------------------- /Rentitas/Caching/RentitasCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Caching/RentitasCache.cs -------------------------------------------------------------------------------- /Rentitas/Core/Application/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Application/Application.cs -------------------------------------------------------------------------------- /Rentitas/Core/BaseScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/BaseScenario.cs -------------------------------------------------------------------------------- /Rentitas/Core/Entities/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Entities/Entity.cs -------------------------------------------------------------------------------- /Rentitas/Core/Entities/EntityEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Entities/EntityEqualityComparer.cs -------------------------------------------------------------------------------- /Rentitas/Core/Entities/EntityEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Entities/EntityEvents.cs -------------------------------------------------------------------------------- /Rentitas/Core/Entities/EntityFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Entities/EntityFields.cs -------------------------------------------------------------------------------- /Rentitas/Core/Entities/EntityMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Entities/EntityMethods.cs -------------------------------------------------------------------------------- /Rentitas/Core/Entities/EntityOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Entities/EntityOwner.cs -------------------------------------------------------------------------------- /Rentitas/Core/Groups/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Groups/Group.cs -------------------------------------------------------------------------------- /Rentitas/Core/Groups/GroupEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Groups/GroupEventType.cs -------------------------------------------------------------------------------- /Rentitas/Core/Groups/GroupEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Groups/GroupEvents.cs -------------------------------------------------------------------------------- /Rentitas/Core/Groups/GroupFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Groups/GroupFields.cs -------------------------------------------------------------------------------- /Rentitas/Core/Groups/GroupMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Groups/GroupMethods.cs -------------------------------------------------------------------------------- /Rentitas/Core/Groups/GroupOvserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Groups/GroupOvserver.cs -------------------------------------------------------------------------------- /Rentitas/Core/Matchers/Matcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Matchers/Matcher.cs -------------------------------------------------------------------------------- /Rentitas/Core/Matchers/MatcherEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Matchers/MatcherEquals.cs -------------------------------------------------------------------------------- /Rentitas/Core/Matchers/MatcherFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Matchers/MatcherFields.cs -------------------------------------------------------------------------------- /Rentitas/Core/Matchers/MatcherMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Matchers/MatcherMethods.cs -------------------------------------------------------------------------------- /Rentitas/Core/Matchers/TriggerOnEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Matchers/TriggerOnEvent.cs -------------------------------------------------------------------------------- /Rentitas/Core/Pools/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Pools/Pool.cs -------------------------------------------------------------------------------- /Rentitas/Core/Pools/PoolEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Pools/PoolEvents.cs -------------------------------------------------------------------------------- /Rentitas/Core/Pools/PoolFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Pools/PoolFactory.cs -------------------------------------------------------------------------------- /Rentitas/Core/Pools/PoolFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Pools/PoolFields.cs -------------------------------------------------------------------------------- /Rentitas/Core/Pools/PoolMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Pools/PoolMethods.cs -------------------------------------------------------------------------------- /Rentitas/Core/Pools/Pools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/Pools/Pools.cs -------------------------------------------------------------------------------- /Rentitas/Core/ReactiveSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Core/ReactiveSystem.cs -------------------------------------------------------------------------------- /Rentitas/Exceptions/EntityExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Exceptions/EntityExceptions.cs -------------------------------------------------------------------------------- /Rentitas/Exceptions/PoolsExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Exceptions/PoolsExceptions.cs -------------------------------------------------------------------------------- /Rentitas/Extensions/MatcherExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Extensions/MatcherExtensions.cs -------------------------------------------------------------------------------- /Rentitas/Helpers/PoolSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Helpers/PoolSystem.cs -------------------------------------------------------------------------------- /Rentitas/Helpers/RentitasUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Helpers/RentitasUtility.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/IApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/IApplication.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/IComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/IComponent.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/IEntity.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/IEntityIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/IEntityIndex.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/IKernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/IKernel.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/IMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/IMatcher.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/IPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/IPool.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/Systems/ICleanupSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/Systems/ICleanupSystem.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/Systems/IDeinitializeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/Systems/IDeinitializeSystem.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/Systems/IDisableSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/Systems/IDisableSystem.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/Systems/IEnableSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/Systems/IEnableSystem.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/Systems/IExecuteSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/Systems/IExecuteSystem.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/Systems/IInitializeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/Systems/IInitializeSystem.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/Systems/IReactiveSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/Systems/IReactiveSystem.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/Systems/ISetApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/Systems/ISetApplication.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/Systems/ISetPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/Systems/ISetPool.cs -------------------------------------------------------------------------------- /Rentitas/Interfaces/Systems/ISystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Interfaces/Systems/ISystem.cs -------------------------------------------------------------------------------- /Rentitas/Rentitas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Rentitas.csproj -------------------------------------------------------------------------------- /Rentitas/Rentitas.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Rentitas/Rentitas.sln -------------------------------------------------------------------------------- /Resources/Logotype.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Resources/Logotype.psd -------------------------------------------------------------------------------- /Resources/rentitas-logo200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alerdenisov/Rentitas/HEAD/Resources/rentitas-logo200.png --------------------------------------------------------------------------------