├── .gitignore ├── Assets ├── Libs.meta ├── Libs │ ├── Entitas-CSharp-1.13.0.meta │ ├── Entitas-CSharp-1.13.0 │ │ ├── .bee │ │ │ ├── docs │ │ │ │ ├── docs-logo.png │ │ │ │ ├── docset.doxyfile │ │ │ │ ├── html.doxyfile │ │ │ │ ├── icon.png │ │ │ │ └── icon@2x.png │ │ │ ├── entitas.sh │ │ │ └── utils │ │ │ │ ├── rsync_exclude.txt │ │ │ │ └── rsync_include.txt │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Addons.meta │ │ ├── Addons │ │ │ ├── Entitas.CodeGeneration.Attributes.meta │ │ │ ├── Entitas.CodeGeneration.Attributes │ │ │ │ ├── Entitas.CodeGeneration.Attributes.csproj.meta │ │ │ │ ├── Entitas.CodeGeneration.Attributes.meta │ │ │ │ └── Entitas.CodeGeneration.Attributes │ │ │ │ │ ├── CleanupAttribute.cs │ │ │ │ │ ├── CleanupAttribute.cs.meta │ │ │ │ │ ├── ComponentNameAttribute.cs │ │ │ │ │ ├── ComponentNameAttribute.cs.meta │ │ │ │ │ ├── ContextAttribute.cs │ │ │ │ │ ├── ContextAttribute.cs.meta │ │ │ │ │ ├── CustomEntityIndexAttribute.cs │ │ │ │ │ ├── CustomEntityIndexAttribute.cs.meta │ │ │ │ │ ├── DontGenerateAttribute.cs │ │ │ │ │ ├── DontGenerateAttribute.cs.meta │ │ │ │ │ ├── EntityIndex.meta │ │ │ │ │ ├── EntityIndex │ │ │ │ │ ├── AbstractEntityIndexAttribute.cs │ │ │ │ │ ├── AbstractEntityIndexAttribute.cs.meta │ │ │ │ │ ├── EntityIndexAttribute.cs │ │ │ │ │ ├── EntityIndexAttribute.cs.meta │ │ │ │ │ ├── EntityIndexGetMethodAttribute.cs │ │ │ │ │ ├── EntityIndexGetMethodAttribute.cs.meta │ │ │ │ │ ├── EntityIndexType.cs │ │ │ │ │ ├── EntityIndexType.cs.meta │ │ │ │ │ ├── PrimaryEntityIndexAttribute.cs │ │ │ │ │ └── PrimaryEntityIndexAttribute.cs.meta │ │ │ │ │ ├── EventAttribute.cs │ │ │ │ │ ├── EventAttribute.cs.meta │ │ │ │ │ ├── FlagPrefixAttribute.cs │ │ │ │ │ ├── FlagPrefixAttribute.cs.meta │ │ │ │ │ ├── PostConstructorAttribute.cs │ │ │ │ │ ├── PostConstructorAttribute.cs.meta │ │ │ │ │ ├── UniqueAttribute.cs │ │ │ │ │ └── UniqueAttribute.cs.meta │ │ │ ├── Entitas.Unity.Editor.meta │ │ │ ├── Entitas.Unity.Editor │ │ │ │ ├── Entitas.Unity.Editor.csproj.meta │ │ │ │ ├── Entitas.Unity.Editor.meta │ │ │ │ └── Entitas.Unity.Editor │ │ │ │ │ ├── EntitasPreferencesDrawer.cs │ │ │ │ │ ├── EntitasPreferencesDrawer.cs.meta │ │ │ │ │ ├── EntitasPreferencesWindow.cs │ │ │ │ │ ├── EntitasPreferencesWindow.cs.meta │ │ │ │ │ ├── Images.meta │ │ │ │ │ ├── Images │ │ │ │ │ ├── EntitasHeader.png │ │ │ │ │ └── EntitasHeader.png.meta │ │ │ │ │ ├── Menu.meta │ │ │ │ │ └── Menu │ │ │ │ │ ├── CheckForUpdates.cs │ │ │ │ │ ├── CheckForUpdates.cs.meta │ │ │ │ │ ├── EntitasMenuItems.cs │ │ │ │ │ └── EntitasMenuItems.cs.meta │ │ │ ├── Entitas.Unity.meta │ │ │ ├── Entitas.Unity │ │ │ │ ├── Entitas.Unity.csproj.meta │ │ │ │ ├── Entitas.Unity.meta │ │ │ │ └── Entitas.Unity │ │ │ │ │ ├── EntityLink.cs │ │ │ │ │ └── EntityLink.cs.meta │ │ │ ├── Entitas.VisualDebugging.Unity.Editor.meta │ │ │ ├── Entitas.VisualDebugging.Unity.Editor │ │ │ │ ├── Entitas.VisualDebugging.Unity.Editor.csproj.meta │ │ │ │ ├── Entitas.VisualDebugging.Unity.Editor.meta │ │ │ │ └── Entitas.VisualDebugging.Unity.Editor │ │ │ │ │ ├── ContextObserver.meta │ │ │ │ │ ├── ContextObserver │ │ │ │ │ ├── ContextObserverInspector.cs │ │ │ │ │ └── ContextObserverInspector.cs.meta │ │ │ │ │ ├── DebugSystems.meta │ │ │ │ │ ├── DebugSystems │ │ │ │ │ ├── DebugSystemsInspector.cs │ │ │ │ │ └── DebugSystemsInspector.cs.meta │ │ │ │ │ ├── EntitasHierarchyIcon.cs │ │ │ │ │ ├── EntitasHierarchyIcon.cs.meta │ │ │ │ │ ├── EntitasStats.cs │ │ │ │ │ ├── EntitasStats.cs.meta │ │ │ │ │ ├── Entity.meta │ │ │ │ │ ├── Entity │ │ │ │ │ ├── DefaultInstanceCreator.meta │ │ │ │ │ ├── DefaultInstanceCreator │ │ │ │ │ │ ├── DefaultArrayCreator.cs │ │ │ │ │ │ ├── DefaultArrayCreator.cs.meta │ │ │ │ │ │ ├── DefaultStringCreator.cs │ │ │ │ │ │ ├── DefaultStringCreator.cs.meta │ │ │ │ │ │ ├── IDefaultInstanceCreator.cs │ │ │ │ │ │ └── IDefaultInstanceCreator.cs.meta │ │ │ │ │ ├── Entity.meta │ │ │ │ │ ├── Entity │ │ │ │ │ │ ├── EntityDrawer.cs │ │ │ │ │ │ ├── EntityDrawer.cs.meta │ │ │ │ │ │ ├── EntityDrawerState.cs │ │ │ │ │ │ ├── EntityDrawerState.cs.meta │ │ │ │ │ │ ├── EntityInspector.cs │ │ │ │ │ │ └── EntityInspector.cs.meta │ │ │ │ │ ├── IComponentDrawer.cs │ │ │ │ │ ├── IComponentDrawer.cs.meta │ │ │ │ │ ├── TypeDrawer.meta │ │ │ │ │ └── TypeDrawer │ │ │ │ │ │ ├── AnimationCurveTypeDrawer.cs │ │ │ │ │ │ ├── AnimationCurveTypeDrawer.cs.meta │ │ │ │ │ │ ├── ArrayTypeDrawer.cs │ │ │ │ │ │ ├── ArrayTypeDrawer.cs.meta │ │ │ │ │ │ ├── BoolTypeDrawer.cs │ │ │ │ │ │ ├── BoolTypeDrawer.cs.meta │ │ │ │ │ │ ├── BoundsTypeDrawer.cs │ │ │ │ │ │ ├── BoundsTypeDrawer.cs.meta │ │ │ │ │ │ ├── CharTypeDrawer.cs │ │ │ │ │ │ ├── CharTypeDrawer.cs.meta │ │ │ │ │ │ ├── ColorTypeDrawer.cs │ │ │ │ │ │ ├── ColorTypeDrawer.cs.meta │ │ │ │ │ │ ├── DateTimeTypeDrawer.cs │ │ │ │ │ │ ├── DateTimeTypeDrawer.cs.meta │ │ │ │ │ │ ├── DictionaryTypeDrawer.cs │ │ │ │ │ │ ├── DictionaryTypeDrawer.cs.meta │ │ │ │ │ │ ├── DoubleTypeDrawer.cs │ │ │ │ │ │ ├── DoubleTypeDrawer.cs.meta │ │ │ │ │ │ ├── EnumTypeDrawer.cs │ │ │ │ │ │ ├── EnumTypeDrawer.cs.meta │ │ │ │ │ │ ├── FloatTypeDrawer.cs │ │ │ │ │ │ ├── FloatTypeDrawer.cs.meta │ │ │ │ │ │ ├── HashSetTypeDrawer.cs │ │ │ │ │ │ ├── HashSetTypeDrawer.cs.meta │ │ │ │ │ │ ├── ITypeDrawer.cs │ │ │ │ │ │ ├── ITypeDrawer.cs.meta │ │ │ │ │ │ ├── IntTypeDrawer.cs │ │ │ │ │ │ ├── IntTypeDrawer.cs.meta │ │ │ │ │ │ ├── ListTypeDrawer.cs │ │ │ │ │ │ ├── ListTypeDrawer.cs.meta │ │ │ │ │ │ ├── RectTypeDrawer.cs │ │ │ │ │ │ ├── RectTypeDrawer.cs.meta │ │ │ │ │ │ ├── StringTypeDrawer.cs │ │ │ │ │ │ ├── StringTypeDrawer.cs.meta │ │ │ │ │ │ ├── UnityObjectTypeDrawer.cs │ │ │ │ │ │ ├── UnityObjectTypeDrawer.cs.meta │ │ │ │ │ │ ├── Vector2TypeDrawer.cs │ │ │ │ │ │ ├── Vector2TypeDrawer.cs.meta │ │ │ │ │ │ ├── Vector3TypeDrawer.cs │ │ │ │ │ │ ├── Vector3TypeDrawer.cs.meta │ │ │ │ │ │ ├── Vector4TypeDrawer.cs │ │ │ │ │ │ └── Vector4TypeDrawer.cs.meta │ │ │ │ │ ├── EntityLinkInspector.cs │ │ │ │ │ ├── EntityLinkInspector.cs.meta │ │ │ │ │ ├── Images.meta │ │ │ │ │ ├── Images │ │ │ │ │ ├── EntitasContextErrorHierarchyIcon.png │ │ │ │ │ ├── EntitasContextErrorHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasContextHierarchyIcon.png │ │ │ │ │ ├── EntitasContextHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasEntityErrorHierarchyIcon.png │ │ │ │ │ ├── EntitasEntityErrorHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasEntityHierarchyIcon.png │ │ │ │ │ ├── EntitasEntityHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasEntityLinkHierarchyIcon.png │ │ │ │ │ ├── EntitasEntityLinkHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasEntityLinkWarnHierarchyIcon.png │ │ │ │ │ ├── EntitasEntityLinkWarnHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasSystemsHierarchyIcon.png │ │ │ │ │ ├── EntitasSystemsHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasSystemsWarnHierarchyIcon.png │ │ │ │ │ └── EntitasSystemsWarnHierarchyIcon.png.meta │ │ │ │ │ ├── VisualDebuggingConfig.cs │ │ │ │ │ ├── VisualDebuggingConfig.cs.meta │ │ │ │ │ ├── VisualDebuggingEntitasExtension.cs │ │ │ │ │ ├── VisualDebuggingEntitasExtension.cs.meta │ │ │ │ │ ├── VisualDebuggingPreferencesDrawer.cs │ │ │ │ │ └── VisualDebuggingPreferencesDrawer.cs.meta │ │ │ ├── Entitas.VisualDebugging.Unity.meta │ │ │ └── Entitas.VisualDebugging.Unity │ │ │ │ ├── Entitas.VisualDebugging.Unity.csproj.meta │ │ │ │ ├── Entitas.VisualDebugging.Unity.csproj.user.meta │ │ │ │ ├── Entitas.VisualDebugging.Unity.meta │ │ │ │ └── Entitas.VisualDebugging.Unity │ │ │ │ ├── ContextObserver.meta │ │ │ │ ├── ContextObserver │ │ │ │ ├── ContextObserver.cs │ │ │ │ ├── ContextObserver.cs.meta │ │ │ │ ├── ContextObserverBehaviour.cs │ │ │ │ ├── ContextObserverBehaviour.cs.meta │ │ │ │ ├── ContextObserverExtension.cs │ │ │ │ └── ContextObserverExtension.cs.meta │ │ │ │ ├── DebugSystems.meta │ │ │ │ ├── DebugSystems │ │ │ │ ├── DebugSystems.cs │ │ │ │ ├── DebugSystems.cs.meta │ │ │ │ ├── DebugSystemsBehaviour.cs │ │ │ │ ├── DebugSystemsBehaviour.cs.meta │ │ │ │ ├── SystemInfo.cs │ │ │ │ └── SystemInfo.cs.meta │ │ │ │ ├── Entity.meta │ │ │ │ ├── Entity │ │ │ │ ├── DontDrawComponentAttribute.cs │ │ │ │ ├── DontDrawComponentAttribute.cs.meta │ │ │ │ ├── EntityBehaviour.cs │ │ │ │ └── EntityBehaviour.cs.meta │ │ │ │ ├── GameObjectDestroyExtension.cs │ │ │ │ ├── GameObjectDestroyExtension.cs.meta │ │ │ │ ├── ICustomDisplayName.cs │ │ │ │ ├── ICustomDisplayName.cs.meta │ │ │ │ ├── TypeHelper.cs │ │ │ │ └── TypeHelper.cs.meta │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTING.md.meta │ │ ├── Entitas.asmdef │ │ ├── Entitas.asmdef.meta │ │ ├── Entitas.meta │ │ ├── Entitas.sln.meta │ │ ├── Entitas │ │ │ ├── Entitas.csproj.meta │ │ │ ├── Entitas.meta │ │ │ └── Entitas │ │ │ │ ├── Collector.meta │ │ │ │ ├── Collector │ │ │ │ ├── Collector.cs │ │ │ │ ├── Collector.cs.meta │ │ │ │ ├── CollectorContextExtension.cs │ │ │ │ ├── CollectorContextExtension.cs.meta │ │ │ │ ├── CollectorException.cs │ │ │ │ ├── CollectorException.cs.meta │ │ │ │ ├── ICollector.cs │ │ │ │ ├── ICollector.cs.meta │ │ │ │ ├── TriggerOnEvent.cs │ │ │ │ ├── TriggerOnEvent.cs.meta │ │ │ │ ├── TriggerOnEventMatcherExtension.cs │ │ │ │ └── TriggerOnEventMatcherExtension.cs.meta │ │ │ │ ├── Context.meta │ │ │ │ ├── Context │ │ │ │ ├── Context.cs │ │ │ │ ├── Context.cs.meta │ │ │ │ ├── ContextExtension.cs │ │ │ │ ├── ContextExtension.cs.meta │ │ │ │ ├── Exceptions.meta │ │ │ │ ├── Exceptions │ │ │ │ │ ├── ContextDoesNotContainEntityException.cs │ │ │ │ │ ├── ContextDoesNotContainEntityException.cs.meta │ │ │ │ │ ├── ContextEntityIndexDoesAlreadyExistException.cs │ │ │ │ │ ├── ContextEntityIndexDoesAlreadyExistException.cs.meta │ │ │ │ │ ├── ContextEntityIndexDoesNotExistException.cs │ │ │ │ │ ├── ContextEntityIndexDoesNotExistException.cs.meta │ │ │ │ │ ├── ContextInfoException.cs │ │ │ │ │ ├── ContextInfoException.cs.meta │ │ │ │ │ ├── ContextStillHasRetainedEntitiesException.cs │ │ │ │ │ ├── ContextStillHasRetainedEntitiesException.cs.meta │ │ │ │ │ ├── EntityIsNotDestroyedException.cs │ │ │ │ │ └── EntityIsNotDestroyedException.cs.meta │ │ │ │ ├── IContext.cs │ │ │ │ ├── IContext.cs.meta │ │ │ │ ├── IContexts.cs │ │ │ │ └── IContexts.cs.meta │ │ │ │ ├── ContextInfo.cs │ │ │ │ ├── ContextInfo.cs.meta │ │ │ │ ├── EntitasException.cs │ │ │ │ ├── EntitasException.cs.meta │ │ │ │ ├── EntitasResources.cs │ │ │ │ ├── EntitasResources.cs.meta │ │ │ │ ├── Entity.meta │ │ │ │ ├── Entity │ │ │ │ ├── Entity.cs │ │ │ │ ├── Entity.cs.meta │ │ │ │ ├── EntityEqualityComparer.cs │ │ │ │ ├── EntityEqualityComparer.cs.meta │ │ │ │ ├── Exceptions.meta │ │ │ │ ├── Exceptions │ │ │ │ │ ├── EntityAlreadyHasComponentException.cs │ │ │ │ │ ├── EntityAlreadyHasComponentException.cs.meta │ │ │ │ │ ├── EntityDoesNotHaveComponentException.cs │ │ │ │ │ ├── EntityDoesNotHaveComponentException.cs.meta │ │ │ │ │ ├── EntityIsAlreadyRetainedByOwnerException.cs │ │ │ │ │ ├── EntityIsAlreadyRetainedByOwnerException.cs.meta │ │ │ │ │ ├── EntityIsNotEnabledException.cs │ │ │ │ │ ├── EntityIsNotEnabledException.cs.meta │ │ │ │ │ ├── EntityIsNotRetainedByOwnerException.cs │ │ │ │ │ └── EntityIsNotRetainedByOwnerException.cs.meta │ │ │ │ ├── IAERC.cs │ │ │ │ ├── IAERC.cs.meta │ │ │ │ ├── IEntity.cs │ │ │ │ ├── IEntity.cs.meta │ │ │ │ ├── SafeAERC.cs │ │ │ │ ├── SafeAERC.cs.meta │ │ │ │ ├── UnsafeAERC.cs │ │ │ │ └── UnsafeAERC.cs.meta │ │ │ │ ├── EntityIndex.meta │ │ │ │ ├── EntityIndex │ │ │ │ ├── AbstractEntityIndex.cs │ │ │ │ ├── AbstractEntityIndex.cs.meta │ │ │ │ ├── EntityIndex.cs │ │ │ │ ├── EntityIndex.cs.meta │ │ │ │ ├── EntityIndexException.cs │ │ │ │ ├── EntityIndexException.cs.meta │ │ │ │ ├── IEntityIndex.cs │ │ │ │ ├── IEntityIndex.cs.meta │ │ │ │ ├── PrimaryEntityIndex.cs │ │ │ │ └── PrimaryEntityIndex.cs.meta │ │ │ │ ├── Extensions.meta │ │ │ │ ├── Extensions │ │ │ │ ├── CollectionExtension.cs │ │ │ │ ├── CollectionExtension.cs.meta │ │ │ │ ├── EntitasStringExtension.cs │ │ │ │ ├── EntitasStringExtension.cs.meta │ │ │ │ ├── PublicMemberInfoEntityExtension.cs │ │ │ │ └── PublicMemberInfoEntityExtension.cs.meta │ │ │ │ ├── Group.meta │ │ │ │ ├── Group │ │ │ │ ├── Group.cs │ │ │ │ ├── Group.cs.meta │ │ │ │ ├── GroupEvent.cs │ │ │ │ ├── GroupEvent.cs.meta │ │ │ │ ├── GroupExtension.cs │ │ │ │ ├── GroupExtension.cs.meta │ │ │ │ ├── GroupSingleEntityException.cs │ │ │ │ ├── GroupSingleEntityException.cs.meta │ │ │ │ ├── IGroup.cs │ │ │ │ └── IGroup.cs.meta │ │ │ │ ├── IComponent.cs │ │ │ │ ├── IComponent.cs.meta │ │ │ │ ├── Matcher.meta │ │ │ │ ├── Matcher │ │ │ │ ├── Interfaces.meta │ │ │ │ ├── Interfaces │ │ │ │ │ ├── IAllOfMatcher.cs │ │ │ │ │ ├── IAllOfMatcher.cs.meta │ │ │ │ │ ├── IAnyOfMatcher.cs │ │ │ │ │ ├── IAnyOfMatcher.cs.meta │ │ │ │ │ ├── ICompoundMatcher.cs │ │ │ │ │ ├── ICompoundMatcher.cs.meta │ │ │ │ │ ├── IMatcher.cs │ │ │ │ │ ├── IMatcher.cs.meta │ │ │ │ │ ├── INoneOfMatcher.cs │ │ │ │ │ └── INoneOfMatcher.cs.meta │ │ │ │ ├── Matcher.cs │ │ │ │ ├── Matcher.cs.meta │ │ │ │ ├── MatcherEquals.cs │ │ │ │ ├── MatcherEquals.cs.meta │ │ │ │ ├── MatcherException.cs │ │ │ │ ├── MatcherException.cs.meta │ │ │ │ ├── MatcherStatic.cs │ │ │ │ ├── MatcherStatic.cs.meta │ │ │ │ ├── MatcherToString.cs │ │ │ │ └── MatcherToString.cs.meta │ │ │ │ ├── Systems.meta │ │ │ │ ├── Systems │ │ │ │ ├── Interfaces.meta │ │ │ │ ├── Interfaces │ │ │ │ │ ├── ICleanupSystem.cs │ │ │ │ │ ├── ICleanupSystem.cs.meta │ │ │ │ │ ├── IExecuteSystem.cs │ │ │ │ │ ├── IExecuteSystem.cs.meta │ │ │ │ │ ├── IInitializeSystem.cs │ │ │ │ │ ├── IInitializeSystem.cs.meta │ │ │ │ │ ├── IReactiveSystem.cs │ │ │ │ │ ├── IReactiveSystem.cs.meta │ │ │ │ │ ├── ISystem.cs │ │ │ │ │ ├── ISystem.cs.meta │ │ │ │ │ ├── ITearDownSystem.cs │ │ │ │ │ └── ITearDownSystem.cs.meta │ │ │ │ ├── JobSystem.cs │ │ │ │ ├── JobSystem.cs.meta │ │ │ │ ├── MultiReactiveSystem.cs │ │ │ │ ├── MultiReactiveSystem.cs.meta │ │ │ │ ├── ReactiveSystem.cs │ │ │ │ ├── ReactiveSystem.cs.meta │ │ │ │ ├── Systems.cs │ │ │ │ └── Systems.cs.meta │ │ │ │ ├── version.txt │ │ │ │ └── version.txt.meta │ │ ├── EntitasUpgradeGuide.md │ │ ├── EntitasUpgradeGuide.md.meta │ │ ├── ISSUE_TEMPLATE.md │ │ ├── ISSUE_TEMPLATE.md.meta │ │ ├── LICENSE.txt │ │ ├── LICENSE.txt.meta │ │ ├── Libraries.meta │ │ ├── Libraries │ │ │ ├── Dependencies.meta │ │ │ ├── Dependencies │ │ │ │ ├── DesperateDevs.meta │ │ │ │ └── DesperateDevs │ │ │ │ │ ├── Compile.cs │ │ │ │ │ ├── Compile.cs.meta │ │ │ │ │ ├── DesperateDevs.Analytics.dll │ │ │ │ │ ├── DesperateDevs.Analytics.dll.meta │ │ │ │ │ ├── DesperateDevs.CodeGeneration.CodeGenerator.Unity.Editor.dll │ │ │ │ │ ├── DesperateDevs.CodeGeneration.CodeGenerator.Unity.Editor.dll.meta │ │ │ │ │ ├── DesperateDevs.CodeGeneration.CodeGenerator.dll │ │ │ │ │ ├── DesperateDevs.CodeGeneration.CodeGenerator.dll.meta │ │ │ │ │ ├── DesperateDevs.CodeGeneration.Plugins.dll │ │ │ │ │ ├── DesperateDevs.CodeGeneration.Plugins.dll.meta │ │ │ │ │ ├── DesperateDevs.CodeGeneration.Unity.Plugins.dll │ │ │ │ │ ├── DesperateDevs.CodeGeneration.Unity.Plugins.dll.meta │ │ │ │ │ ├── DesperateDevs.CodeGeneration.dll │ │ │ │ │ ├── DesperateDevs.CodeGeneration.dll.meta │ │ │ │ │ ├── DesperateDevs.Logging.dll │ │ │ │ │ ├── DesperateDevs.Logging.dll.meta │ │ │ │ │ ├── DesperateDevs.Networking.dll │ │ │ │ │ ├── DesperateDevs.Networking.dll.meta │ │ │ │ │ ├── DesperateDevs.Serialization.dll │ │ │ │ │ ├── DesperateDevs.Serialization.dll.meta │ │ │ │ │ ├── DesperateDevs.Unity.Editor.dll │ │ │ │ │ ├── DesperateDevs.Unity.Editor.dll.meta │ │ │ │ │ ├── DesperateDevs.Utils.dll │ │ │ │ │ ├── DesperateDevs.Utils.dll.meta │ │ │ │ │ ├── Jenny-Header.png │ │ │ │ │ └── Jenny-Header.png.meta │ │ │ ├── NSpec.dll │ │ │ ├── NSpec.dll.meta │ │ │ ├── NSpecRunner.dll │ │ │ ├── NSpecRunner.dll.meta │ │ │ ├── nunit.framework.dll │ │ │ └── nunit.framework.dll.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── bee.sh │ │ ├── bee.sh.meta │ │ ├── cvs │ │ │ ├── CHANGELOG.md │ │ │ ├── CHANGELOG.md.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── Entitas.Migration.Unity.Editor.dll │ │ │ │ ├── Entitas.Migration.Unity.Editor.dll.meta │ │ │ │ ├── Entitas.Migration.dll │ │ │ │ ├── Entitas.Migration.dll.meta │ │ │ │ ├── Entitas.Unity.Editor.dll │ │ │ │ ├── Entitas.Unity.Editor.dll.meta │ │ │ │ ├── Entitas.VisualDebugging.Unity.Editor.dll │ │ │ │ ├── Entitas.VisualDebugging.Unity.Editor.dll.meta │ │ │ │ ├── Images.meta │ │ │ │ ├── Images │ │ │ │ │ ├── EntitasContextErrorHierarchyIcon.png │ │ │ │ │ ├── EntitasContextErrorHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasContextHierarchyIcon.png │ │ │ │ │ ├── EntitasContextHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasEntityErrorHierarchyIcon.png │ │ │ │ │ ├── EntitasEntityErrorHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasEntityHierarchyIcon.png │ │ │ │ │ ├── EntitasEntityHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasEntityLinkHierarchyIcon.png │ │ │ │ │ ├── EntitasEntityLinkHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasEntityLinkWarnHierarchyIcon.png │ │ │ │ │ ├── EntitasEntityLinkWarnHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasHeader.png │ │ │ │ │ ├── EntitasHeader.png.meta │ │ │ │ │ ├── EntitasSystemsHierarchyIcon.png │ │ │ │ │ ├── EntitasSystemsHierarchyIcon.png.meta │ │ │ │ │ ├── EntitasSystemsWarnHierarchyIcon.png │ │ │ │ │ └── EntitasSystemsWarnHierarchyIcon.png.meta │ │ │ │ ├── Plugins.meta │ │ │ │ └── Plugins │ │ │ │ │ ├── Entitas.CodeGeneration.Plugins.dll │ │ │ │ │ ├── Entitas.CodeGeneration.Plugins.dll.meta │ │ │ │ │ ├── Entitas.VisualDebugging.CodeGeneration.Plugins.dll │ │ │ │ │ └── Entitas.VisualDebugging.CodeGeneration.Plugins.dll.meta │ │ │ ├── Entitas.CodeGeneration.Attributes.dll │ │ │ ├── Entitas.CodeGeneration.Attributes.dll.meta │ │ │ ├── Entitas.Unity.dll │ │ │ ├── Entitas.Unity.dll.meta │ │ │ ├── Entitas.VisualDebugging.Unity.dll │ │ │ ├── Entitas.VisualDebugging.Unity.dll.meta │ │ │ ├── Entitas.dll │ │ │ ├── Entitas.dll.meta │ │ │ ├── Entitas.xml │ │ │ ├── Entitas.xml.meta │ │ │ ├── EntitasUpgradeGuide.md │ │ │ ├── EntitasUpgradeGuide.md.meta │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSE.txt.meta │ │ │ ├── README.md │ │ │ └── README.md.meta │ │ ├── icon.png │ │ ├── icon.png.meta │ │ ├── tree.txt │ │ └── tree.txt.meta │ ├── Entitas-Generics.meta │ └── Entitas-Generics │ │ ├── ComponentAccessor.cs │ │ ├── ComponentAccessor.cs.meta │ │ ├── Components.meta │ │ ├── Components │ │ ├── AddedListenersComponent.cs │ │ ├── AddedListenersComponent.cs.meta │ │ ├── RemovedListenersComponent.cs │ │ ├── RemovedListenersComponent.cs.meta │ │ ├── UniqueComponents.cs │ │ └── UniqueComponents.cs.meta │ │ ├── ContextDefinition.cs │ │ ├── ContextDefinition.cs.meta │ │ ├── Debugging.meta │ │ ├── Debugging │ │ ├── VisualDebuggingExtensions.cs │ │ └── VisualDebuggingExtensions.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── EventSystemListenerComponentDrawer.cs │ │ └── EventSystemListenerComponentDrawer.cs.meta │ │ ├── Entitas.Generics.asmdef │ │ ├── Entitas.Generics.asmdef.meta │ │ ├── Events.meta │ │ ├── Events │ │ ├── EventSystem.cs │ │ ├── EventSystem.cs.meta │ │ ├── Events.cs │ │ └── Events.cs.meta │ │ ├── GenericContext.cs │ │ ├── GenericContext.cs.meta │ │ ├── GenericEntity.cs │ │ ├── GenericEntity.cs.meta │ │ ├── GenericMatcher.cs │ │ ├── GenericMatcher.cs.meta │ │ ├── Helpers.meta │ │ ├── Helpers │ │ ├── ComponentHelper.cs │ │ ├── ComponentHelper.cs.meta │ │ ├── ContextHelper.cs │ │ ├── ContextHelper.cs.meta │ │ ├── Feature.cs │ │ ├── Feature.cs.meta │ │ ├── ReflectionHelper.cs │ │ └── ReflectionHelper.cs.meta │ │ ├── Interfaces.meta │ │ ├── Interfaces │ │ ├── IEventComponent.cs │ │ ├── IEventComponent.cs.meta │ │ ├── IFlagComponent.cs │ │ ├── IFlagComponent.cs.meta │ │ ├── IListenerComponent.cs │ │ ├── IListenerComponent.cs.meta │ │ ├── IUniqueComponent.cs │ │ ├── IUniqueComponent.cs.meta │ │ ├── IValueComponent.cs │ │ └── IValueComponent.cs.meta │ │ ├── Systems.meta │ │ └── Systems │ │ ├── GenericReactiveSystem.cs │ │ └── GenericReactiveSystem.cs.meta ├── Materials.meta ├── Materials │ ├── BlockMaterial.mat │ ├── BlockMaterial.mat.meta │ ├── ExsplosiveMaterial.mat │ ├── ExsplosiveMaterial.mat.meta │ ├── NotMovableBlockMaterial.mat │ ├── NotMovableBlockMaterial.mat.meta │ ├── SelectedMaterial.mat │ └── SelectedMaterial.mat.meta ├── Resources.meta ├── Resources │ ├── ComboDefinitions.json │ ├── ComboDefinitions.json.meta │ ├── Prefabs.meta │ └── Prefabs │ │ ├── Block.prefab │ │ ├── Block.prefab.meta │ │ ├── Element.prefab │ │ ├── Element.prefab.meta │ │ ├── ExsplosiveBlock.prefab │ │ ├── ExsplosiveBlock.prefab.meta │ │ ├── NotMovableBlock.prefab │ │ └── NotMovableBlock.prefab.meta ├── Scenes.meta ├── Scenes │ ├── Main.unity │ ├── Main.unity.meta │ ├── test.unity │ └── test.unity.meta ├── Sources.meta ├── Sources │ ├── Entitas.Game.meta │ ├── Entitas.Game │ │ ├── Config.meta │ │ ├── Config │ │ │ ├── Components.meta │ │ │ ├── Components │ │ │ │ ├── ComboDefinitionsComponent.cs │ │ │ │ ├── ComboDefinitionsComponent.cs.meta │ │ │ │ ├── ExplosiveScoringTableComponent.cs │ │ │ │ ├── ExplosiveScoringTableComponent.cs.meta │ │ │ │ ├── MapSizeComponent.cs │ │ │ │ ├── MapSizeComponent.cs.meta │ │ │ │ ├── MaxActionCountComponent.cs │ │ │ │ ├── MaxActionCountComponent.cs.meta │ │ │ │ ├── MinMatchCountComponent.cs │ │ │ │ ├── MinMatchCountComponent.cs.meta │ │ │ │ ├── ScoringTableComponent.cs │ │ │ │ ├── ScoringTableComponent.cs.meta │ │ │ │ ├── TypeCountComponent.cs │ │ │ │ └── TypeCountComponent.cs.meta │ │ │ ├── ConfigContext.cs │ │ │ ├── ConfigContext.cs.meta │ │ │ ├── ConfigEntity.cs │ │ │ ├── ConfigEntity.cs.meta │ │ │ ├── ConfigEventSystems.cs │ │ │ └── ConfigEventSystems.cs.meta │ │ ├── Contexts.cs │ │ ├── Contexts.cs.meta │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── ComboDefinition.cs │ │ │ ├── ComboDefinition.cs.meta │ │ │ ├── ComboDefinitions.cs │ │ │ ├── ComboDefinitions.cs.meta │ │ │ ├── ComboPattern.cs │ │ │ ├── ComboPattern.cs.meta │ │ │ ├── GridPosition.cs │ │ │ ├── GridPosition.cs.meta │ │ │ ├── GridSize.cs │ │ │ ├── GridSize.cs.meta │ │ │ ├── PositionConversionExstensions.cs │ │ │ └── PositionConversionExstensions.cs.meta │ │ ├── Game.asmdef │ │ ├── Game.asmdef.meta │ │ ├── Game.meta │ │ ├── Game │ │ │ ├── Blocker.meta │ │ │ ├── Blocker │ │ │ │ ├── BlockComponent.cs │ │ │ │ └── BlockComponent.cs.meta │ │ │ ├── Combo.meta │ │ │ ├── Combo │ │ │ │ ├── ComboComponent.cs │ │ │ │ ├── ComboComponent.cs.meta │ │ │ │ ├── ComboDetectionSystem.cs │ │ │ │ ├── ComboDetectionSystem.cs.meta │ │ │ │ ├── InComboComponent.cs │ │ │ │ └── InComboComponent.cs.meta │ │ │ ├── Counter.meta │ │ │ ├── Counter │ │ │ │ ├── ActionCounterSystem.cs │ │ │ │ └── ActionCounterSystem.cs.meta │ │ │ ├── Destroy.meta │ │ │ ├── Destroy │ │ │ │ ├── DestroyEntitySystem.cs │ │ │ │ ├── DestroyEntitySystem.cs.meta │ │ │ │ ├── DestroyedComponent.cs │ │ │ │ └── DestroyedComponent.cs.meta │ │ │ ├── Exsplosion.meta │ │ │ ├── Exsplosion │ │ │ │ ├── ExplosionSystem.cs │ │ │ │ ├── ExplosionSystem.cs.meta │ │ │ │ ├── ExplosiveComponent.cs │ │ │ │ └── ExplosiveComponent.cs.meta │ │ │ ├── Fill.meta │ │ │ ├── Fill │ │ │ │ ├── AddElementsSystem.cs │ │ │ │ ├── AddElementsSystem.cs.meta │ │ │ │ ├── FillAllElementsSystem.cs │ │ │ │ └── FillAllElementsSystem.cs.meta │ │ │ ├── GameContext.cs │ │ │ ├── GameContext.cs.meta │ │ │ ├── GameEntity.cs │ │ │ ├── GameEntity.cs.meta │ │ │ ├── GameEventSystems.cs │ │ │ ├── GameEventSystems.cs.meta │ │ │ ├── GameOver.meta │ │ │ ├── GameOver │ │ │ │ ├── GameOverSystem.cs │ │ │ │ └── GameOverSystem.cs.meta │ │ │ ├── GameSystems.cs │ │ │ ├── GameSystems.cs.meta │ │ │ ├── General.meta │ │ │ ├── General │ │ │ │ ├── ElementComponent.cs │ │ │ │ ├── ElementComponent.cs.meta │ │ │ │ ├── ElementTypeComponent.cs │ │ │ │ ├── ElementTypeComponent.cs.meta │ │ │ │ ├── IdComponent.cs │ │ │ │ └── IdComponent.cs.meta │ │ │ ├── Match.meta │ │ │ ├── Match │ │ │ │ ├── Add.meta │ │ │ │ ├── Add │ │ │ │ │ ├── MarkMatchedSystem.cs │ │ │ │ │ └── MarkMatchedSystem.cs.meta │ │ │ │ ├── Clear.meta │ │ │ │ ├── Clear │ │ │ │ │ ├── RemoveMatchedSystem.cs │ │ │ │ │ └── RemoveMatchedSystem.cs.meta │ │ │ │ ├── MatchedComponent.cs │ │ │ │ └── MatchedComponent.cs.meta │ │ │ ├── Move.meta │ │ │ ├── Move │ │ │ │ ├── FieldMovedComponent.cs │ │ │ │ ├── FieldMovedComponent.cs.meta │ │ │ │ ├── IsMoving.cs │ │ │ │ ├── IsMoving.cs.meta │ │ │ │ ├── MovableComponent.cs │ │ │ │ ├── MovableComponent.cs.meta │ │ │ │ ├── MoveSystem.cs │ │ │ │ ├── MoveSystem.cs.meta │ │ │ │ ├── PositionComponent.cs │ │ │ │ └── PositionComponent.cs.meta │ │ │ ├── Restart.meta │ │ │ ├── Restart │ │ │ │ ├── GameRestartSystem.cs │ │ │ │ ├── GameRestartSystem.cs.meta │ │ │ │ ├── RestartHappenedComponent.cs │ │ │ │ └── RestartHappenedComponent.cs.meta │ │ │ ├── Reward.meta │ │ │ ├── Reward │ │ │ │ ├── Emission.meta │ │ │ │ ├── Emission │ │ │ │ │ ├── ComboRewardEmitterSystem.cs │ │ │ │ │ ├── ComboRewardEmitterSystem.cs.meta │ │ │ │ │ ├── ExsplosiveRewardEmitterSystem.cs │ │ │ │ │ ├── ExsplosiveRewardEmitterSystem.cs.meta │ │ │ │ │ ├── RewardEmitterSystem.cs │ │ │ │ │ └── RewardEmitterSystem.cs.meta │ │ │ │ ├── Reception.meta │ │ │ │ ├── Reception │ │ │ │ │ ├── ApplyRewardSystem.cs │ │ │ │ │ └── ApplyRewardSystem.cs.meta │ │ │ │ ├── RewardComponent.cs │ │ │ │ ├── RewardComponent.cs.meta │ │ │ │ ├── RewardSystems.cs │ │ │ │ └── RewardSystems.cs.meta │ │ │ ├── Selection.meta │ │ │ ├── Selection │ │ │ │ ├── Add.meta │ │ │ │ ├── Add │ │ │ │ │ ├── AddSelectionSystem.cs │ │ │ │ │ └── AddSelectionSystem.cs.meta │ │ │ │ ├── Clear.meta │ │ │ │ ├── Clear │ │ │ │ │ ├── DropSelectionOnMoveSystem.cs │ │ │ │ │ ├── DropSelectionOnMoveSystem.cs.meta │ │ │ │ │ ├── DropSelectionSystem.cs │ │ │ │ │ └── DropSelectionSystem.cs.meta │ │ │ │ ├── Remove.meta │ │ │ │ ├── Remove │ │ │ │ │ ├── UnselectionSystem.cs │ │ │ │ │ └── UnselectionSystem.cs.meta │ │ │ │ ├── SelectedComponent.cs │ │ │ │ ├── SelectedComponent.cs.meta │ │ │ │ ├── SelectionIdComponent.cs │ │ │ │ └── SelectionIdComponent.cs.meta │ │ │ ├── View.meta │ │ │ └── View │ │ │ │ ├── AssetComponent.cs │ │ │ │ ├── AssetComponent.cs.meta │ │ │ │ ├── AssetLoadedComponent.cs │ │ │ │ ├── AssetLoadedComponent.cs.meta │ │ │ │ ├── ColorComponent.cs │ │ │ │ ├── ColorComponent.cs.meta │ │ │ │ ├── ViewSystem.cs │ │ │ │ └── ViewSystem.cs.meta │ │ ├── GameState.meta │ │ ├── GameState │ │ │ ├── ActionCountComponent.cs │ │ │ ├── ActionCountComponent.cs.meta │ │ │ ├── Exstension.meta │ │ │ ├── Exstension │ │ │ │ ├── GameStateExstensions.cs │ │ │ │ └── GameStateExstensions.cs.meta │ │ │ ├── GameOverComponent.cs │ │ │ ├── GameOverComponent.cs.meta │ │ │ ├── GameStateContext.cs │ │ │ ├── GameStateContext.cs.meta │ │ │ ├── GameStateEntity.cs │ │ │ ├── GameStateEntity.cs.meta │ │ │ ├── GameStateEventSystems.cs │ │ │ ├── GameStateEventSystems.cs.meta │ │ │ ├── GameStateSystems.cs │ │ │ ├── GameStateSystems.cs.meta │ │ │ ├── Init.meta │ │ │ ├── Init │ │ │ │ ├── InitStateSystem.cs │ │ │ │ └── InitStateSystem.cs.meta │ │ │ ├── LastSelectedComponent.cs │ │ │ ├── LastSelectedComponent.cs.meta │ │ │ ├── MaxSelectedElementComponent.cs │ │ │ ├── MaxSelectedElementComponent.cs.meta │ │ │ ├── Restart.meta │ │ │ ├── Restart │ │ │ │ ├── GameStateRestartSystem.cs │ │ │ │ └── GameStateRestartSystem.cs.meta │ │ │ ├── ScoreComponent.cs │ │ │ └── ScoreComponent.cs.meta │ │ ├── Input.meta │ │ ├── Input │ │ │ ├── InputContext.cs │ │ │ ├── InputContext.cs.meta │ │ │ ├── InputEntity.cs │ │ │ ├── InputEntity.cs.meta │ │ │ ├── InputSystems.cs │ │ │ ├── InputSystems.cs.meta │ │ │ ├── Pointer.meta │ │ │ ├── Pointer │ │ │ │ ├── PointerHoldingComponent.cs │ │ │ │ ├── PointerHoldingComponent.cs.meta │ │ │ │ ├── PointerHoldingPositionComponent.cs │ │ │ │ ├── PointerHoldingPositionComponent.cs.meta │ │ │ │ ├── PointerHoldingTimeComponent.cs │ │ │ │ ├── PointerHoldingTimeComponent.cs.meta │ │ │ │ ├── PointerReleasedComponent.cs │ │ │ │ ├── PointerReleasedComponent.cs.meta │ │ │ │ ├── PointerStartedHoldingComponent.cs │ │ │ │ ├── PointerStartedHoldingComponent.cs.meta │ │ │ │ ├── UpdateInputSystem.cs │ │ │ │ └── UpdateInputSystem.cs.meta │ │ │ ├── Restart.meta │ │ │ ├── Restart │ │ │ │ ├── RestartComponent.cs │ │ │ │ └── RestartComponent.cs.meta │ │ │ ├── Time.meta │ │ │ └── Time │ │ │ │ ├── DeltaTimeComponent.cs │ │ │ │ ├── DeltaTimeComponent.cs.meta │ │ │ │ ├── RealtimeSinceStartupComponent.cs │ │ │ │ ├── RealtimeSinceStartupComponent.cs.meta │ │ │ │ ├── UpdateTimeSystem.cs │ │ │ │ └── UpdateTimeSystem.cs.meta │ │ ├── Interface.meta │ │ └── Interface │ │ │ ├── IElementService.cs │ │ │ ├── IElementService.cs.meta │ │ │ ├── IInputService.cs │ │ │ ├── IInputService.cs.meta │ │ │ ├── IService.cs │ │ │ ├── IService.cs.meta │ │ │ ├── IServices.cs │ │ │ ├── IServices.cs.meta │ │ │ ├── ITimeService.cs │ │ │ ├── ITimeService.cs.meta │ │ │ ├── IViewService.cs │ │ │ └── IViewService.cs.meta │ ├── GameController.cs │ ├── GameController.cs.meta │ ├── RootSystems.cs │ ├── RootSystems.cs.meta │ ├── Services.cs │ ├── Services.cs.meta │ ├── Unity.Renderer.meta │ ├── Unity.Renderer │ │ ├── Services.meta │ │ ├── Services │ │ │ ├── Service.cs │ │ │ ├── Service.cs.meta │ │ │ ├── UnityElementService.cs │ │ │ ├── UnityElementService.cs.meta │ │ │ ├── UnityInputService.cs │ │ │ ├── UnityInputService.cs.meta │ │ │ ├── UnityTimeService.cs │ │ │ ├── UnityTimeService.cs.meta │ │ │ ├── UnityViewService.cs │ │ │ └── UnityViewService.cs.meta │ │ ├── UnityRenderer.asmdef │ │ ├── UnityRenderer.asmdef.meta │ │ ├── View.meta │ │ └── View │ │ │ ├── IView.cs │ │ │ ├── IView.cs.meta │ │ │ ├── Listeners.meta │ │ │ ├── Listeners │ │ │ ├── ColorListener.cs │ │ │ ├── ColorListener.cs.meta │ │ │ ├── IEventListener.cs │ │ │ ├── IEventListener.cs.meta │ │ │ ├── PositionListener.cs │ │ │ ├── PositionListener.cs.meta │ │ │ ├── SelectedListener.cs │ │ │ └── SelectedListener.cs.meta │ │ │ ├── UI.meta │ │ │ ├── UI │ │ │ ├── UIActionCountView.cs │ │ │ ├── UIActionCountView.cs.meta │ │ │ ├── UIGameOverView.cs │ │ │ ├── UIGameOverView.cs.meta │ │ │ ├── UIRestartView.cs │ │ │ ├── UIRestartView.cs.meta │ │ │ ├── UIRewardView.cs │ │ │ ├── UIRewardView.cs.meta │ │ │ ├── UIScoreView.cs │ │ │ └── UIScoreView.cs.meta │ │ │ ├── UnityView.cs │ │ │ └── UnityView.cs.meta │ ├── WpfRenderer.meta │ ├── WpfRenderer │ │ ├── Performance.sln.DotSettings.user.meta │ │ ├── Performance.sln.meta │ │ ├── Readme.txt │ │ ├── Readme.txt.meta │ │ └── cvs │ │ │ ├── Performance.App │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── GlobalCommands.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Themes │ │ │ │ ├── Expression │ │ │ │ │ ├── Common.xaml │ │ │ │ │ ├── Dark.xaml │ │ │ │ │ └── Light.xaml │ │ │ │ ├── ExpressionDark.xaml │ │ │ │ ├── ExpressionLight.xaml │ │ │ │ └── NostalgiaDark.xaml │ │ │ └── Windows │ │ │ │ ├── MainWindow.xaml │ │ │ │ ├── MainWindow.xaml.bak │ │ │ │ ├── MainWindow.xaml.cs │ │ │ │ ├── MainWindow.xaml.cs.bak │ │ │ │ ├── SettingsWindow.xaml │ │ │ │ └── SettingsWindow.xaml.cs │ │ │ ├── Performance.Common │ │ │ ├── Behaviors │ │ │ │ ├── AutoScrollBehavior.cs │ │ │ │ ├── GridHelpers.cs │ │ │ │ └── Mouse.cs │ │ │ ├── BindingProxy.cs │ │ │ ├── Converters │ │ │ │ ├── BoolConverter.cs │ │ │ │ ├── BoolToBrushConverter.cs │ │ │ │ ├── BoolToIntConverter.cs │ │ │ │ ├── BoolToObjectConverter.cs │ │ │ │ ├── BoolToStringConverter.cs │ │ │ │ ├── BoolToValueConverter.cs │ │ │ │ ├── BoolToVisibilityConverter.cs │ │ │ │ ├── ColorToSolidColorBrushConverter.cs │ │ │ │ ├── DebugDataBindingConverter.cs │ │ │ │ ├── GridPositionConverter.cs │ │ │ │ └── GridPositionToMarginConverter.cs │ │ │ ├── FileSerializer.cs │ │ │ ├── IPulsatingViewModel.cs │ │ │ ├── JsonSerializer.cs │ │ │ ├── Logger.cs │ │ │ ├── NotifyBase.cs │ │ │ ├── NotifyRouter.cs │ │ │ ├── PauseTokenSource.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── AssemblyInfo.cs.meta │ │ │ ├── RelayCommand.cs │ │ │ └── Validation │ │ │ │ └── OnlyDigitsValidationRule.cs │ │ │ ├── Performance.Game │ │ │ ├── Class1.cs.meta │ │ │ ├── Factories.cs │ │ │ ├── Game.cs │ │ │ ├── Game.cs.meta │ │ │ ├── GameController.cs │ │ │ ├── Libs │ │ │ │ └── UnityEngine 2019.1.0f1 │ │ │ │ │ ├── UnityEngine.CoreModule.dll │ │ │ │ │ ├── UnityEngine.CoreModule.dll.mdb │ │ │ │ │ ├── UnityEngine.JSONSerializeModule.dll │ │ │ │ │ ├── UnityEngine.JSONSerializeModule.dll.mdb │ │ │ │ │ ├── UnityEngine.SharedInternalsModule.dll │ │ │ │ │ └── UnityEngine.SharedInternalsModule.dll.mdb │ │ │ ├── Performance.Game.csproj.meta │ │ │ ├── Properties.meta │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── AssemblyInfo.cs.meta │ │ │ ├── RootSystems.cs │ │ │ ├── RootSystems.cs.meta │ │ │ ├── Services.cs │ │ │ ├── Services.cs.meta │ │ │ ├── Services.meta │ │ │ ├── Services │ │ │ │ ├── Service.cs │ │ │ │ ├── Service.cs.meta │ │ │ │ ├── TestElementService.cs │ │ │ │ ├── TestElementService.cs.meta │ │ │ │ ├── TestInputService.cs │ │ │ │ ├── TestInputService.cs.meta │ │ │ │ ├── TestTimeService.cs │ │ │ │ ├── TestTimeService.cs.meta │ │ │ │ ├── TestViewService.cs │ │ │ │ └── TestViewService.cs.meta │ │ │ ├── TestGameController.cs.meta │ │ │ ├── View.meta │ │ │ ├── View │ │ │ │ ├── Factories │ │ │ │ │ └── ElementPool.cs │ │ │ │ ├── IView.cs.meta │ │ │ │ ├── Listeners.meta │ │ │ │ ├── Listeners │ │ │ │ │ ├── ColorListener.cs │ │ │ │ │ ├── ColorListener.cs.meta │ │ │ │ │ ├── DestroyedListener.cs │ │ │ │ │ ├── IEventListener.cs.meta │ │ │ │ │ ├── PositionListener.cs │ │ │ │ │ ├── PositionListener.cs.meta │ │ │ │ │ ├── SelectedListener.cs │ │ │ │ │ └── SelectedListener.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ ├── UI │ │ │ │ │ ├── UIActionCountView.cs │ │ │ │ │ ├── UIActionCountView.cs.meta │ │ │ │ │ ├── UIComboView.cs │ │ │ │ │ ├── UIGameOverView.cs │ │ │ │ │ ├── UIGameOverView.cs.meta │ │ │ │ │ ├── UIRestartView.cs │ │ │ │ │ ├── UIRestartView.cs.meta │ │ │ │ │ ├── UIRewardView.cs │ │ │ │ │ ├── UIRewardView.cs.meta │ │ │ │ │ ├── UIScoreView.cs │ │ │ │ │ ├── UIScoreView.cs.meta │ │ │ │ │ └── UISettingsSync.cs │ │ │ │ └── UnityView.cs.meta │ │ │ ├── bin.meta │ │ │ └── obj.meta │ │ │ └── Performance.ViewModel │ │ │ ├── BoardViewModel.cs.meta │ │ │ ├── Controls │ │ │ ├── GameBoard │ │ │ │ ├── GameBoard.xaml │ │ │ │ ├── GameBoard.xaml.cs │ │ │ │ └── GameBoardViewModel.cs │ │ │ └── LogViewer │ │ │ │ ├── LogViewer.xaml │ │ │ │ ├── LogViewer.xaml.cs │ │ │ │ └── LogViewerViewModel.cs │ │ │ ├── ElementViewModel.cs │ │ │ ├── InputViewModel.cs │ │ │ ├── Interfaces │ │ │ ├── IElementFactory.cs │ │ │ ├── IFactories.cs │ │ │ └── IView.cs │ │ │ ├── MainViewModel.cs │ │ │ ├── MainViewModel.cs.meta │ │ │ ├── Performance.ViewModel.csproj.meta │ │ │ ├── Properties.meta │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyInfo.cs.meta │ │ │ ├── Resources │ │ │ ├── ActorType.cs │ │ │ ├── BoardSize.cs │ │ │ └── ObservableRangeCollection.cs │ │ │ ├── SessionViewModel.cs │ │ │ ├── SettingsViewModel.cs │ │ │ ├── SettingsViewModel.cs.meta │ │ │ ├── ViewsViewModel.cs │ │ │ ├── WorkContext.cs │ │ │ ├── WorkContext.cs.meta │ │ │ ├── bin.meta │ │ │ └── obj.meta │ └── cvs │ │ ├── Components.meta │ │ ├── Components │ │ ├── Interfaces.meta │ │ └── Interfaces │ │ │ ├── IDestroyedEntity.cs │ │ │ └── IDestroyedEntity.cs.meta │ │ ├── Config.meta │ │ ├── Config │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── ConfigComboDefinitionsComponent.cs │ │ │ ├── ConfigComboDefinitionsComponent.cs.meta │ │ │ ├── ConfigExsplosiveScoringTableComponent.cs │ │ │ ├── ConfigExsplosiveScoringTableComponent.cs.meta │ │ │ ├── ConfigMapSizeComponent.cs │ │ │ ├── ConfigMapSizeComponent.cs.meta │ │ │ ├── ConfigMaxActionCountComponent.cs │ │ │ ├── ConfigMaxActionCountComponent.cs.meta │ │ │ ├── ConfigMaxActionCountListenerComponent.cs │ │ │ ├── ConfigMaxActionCountListenerComponent.cs.meta │ │ │ ├── ConfigMinMatchCountComponent.cs │ │ │ ├── ConfigMinMatchCountComponent.cs.meta │ │ │ ├── ConfigScoringTableComponent.cs │ │ │ ├── ConfigScoringTableComponent.cs.meta │ │ │ ├── ConfigTypeCountComponent.cs │ │ │ └── ConfigTypeCountComponent.cs.meta │ │ ├── ConfigAttribute.cs │ │ ├── ConfigAttribute.cs.meta │ │ ├── ConfigComponentsLookup.cs │ │ ├── ConfigComponentsLookup.cs.meta │ │ ├── ConfigContext.cs │ │ ├── ConfigContext.cs.meta │ │ ├── ConfigEntity.cs │ │ ├── ConfigEntity.cs.meta │ │ ├── ConfigMatcher.cs │ │ └── ConfigMatcher.cs.meta │ │ ├── Contexts.cs │ │ ├── Contexts.cs.meta │ │ ├── Events.meta │ │ ├── Events │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── ActionCountListenerComponent.cs │ │ │ ├── ActionCountListenerComponent.cs.meta │ │ │ ├── ColorListenerComponent.cs │ │ │ ├── ColorListenerComponent.cs.meta │ │ │ ├── GameDestroyedListenerComponent.cs │ │ │ ├── GameDestroyedListenerComponent.cs.meta │ │ │ ├── GameOverListenerComponent.cs │ │ │ ├── GameOverListenerComponent.cs.meta │ │ │ ├── GameOverRemovedListenerComponent.cs │ │ │ ├── GameOverRemovedListenerComponent.cs.meta │ │ │ ├── InputDestroyedListenerComponent.cs │ │ │ ├── InputDestroyedListenerComponent.cs.meta │ │ │ ├── MaxActionCountListenerComponent.cs │ │ │ ├── MaxActionCountListenerComponent.cs.meta │ │ │ ├── PositionListenerComponent.cs │ │ │ ├── PositionListenerComponent.cs.meta │ │ │ ├── ScoreListenerComponent.cs │ │ │ ├── ScoreListenerComponent.cs.meta │ │ │ ├── SelectedListenerComponent.cs │ │ │ ├── SelectedListenerComponent.cs.meta │ │ │ ├── SelectedRemovedListenerComponent.cs │ │ │ └── SelectedRemovedListenerComponent.cs.meta │ │ ├── ConfigEventSystems.cs │ │ ├── ConfigEventSystems.cs.meta │ │ ├── GameEventSystems.cs │ │ ├── GameEventSystems.cs.meta │ │ ├── GameStateEventSystems.cs │ │ ├── GameStateEventSystems.cs.meta │ │ ├── InputEventSystems.cs │ │ ├── InputEventSystems.cs.meta │ │ ├── Interfaces.meta │ │ ├── Interfaces │ │ │ ├── IActionCountListener.cs │ │ │ ├── IActionCountListener.cs.meta │ │ │ ├── IColorListener.cs │ │ │ ├── IColorListener.cs.meta │ │ │ ├── IGameDestroyedListener.cs │ │ │ ├── IGameDestroyedListener.cs.meta │ │ │ ├── IGameOverListener.cs │ │ │ ├── IGameOverListener.cs.meta │ │ │ ├── IGameOverRemovedListener.cs │ │ │ ├── IGameOverRemovedListener.cs.meta │ │ │ ├── IInputDestroyedListener.cs │ │ │ ├── IInputDestroyedListener.cs.meta │ │ │ ├── IMaxActionCountListener.cs │ │ │ ├── IMaxActionCountListener.cs.meta │ │ │ ├── IPositionListener.cs │ │ │ ├── IPositionListener.cs.meta │ │ │ ├── IScoreListener.cs │ │ │ ├── IScoreListener.cs.meta │ │ │ ├── ISelectedListener.cs │ │ │ ├── ISelectedListener.cs.meta │ │ │ ├── ISelectedRemovedListener.cs │ │ │ └── ISelectedRemovedListener.cs.meta │ │ ├── Systems.meta │ │ └── Systems │ │ │ ├── ActionCountEventSystem.cs │ │ │ ├── ActionCountEventSystem.cs.meta │ │ │ ├── ColorEventSystem.cs │ │ │ ├── ColorEventSystem.cs.meta │ │ │ ├── GameDestroyedEventSystem.cs │ │ │ ├── GameDestroyedEventSystem.cs.meta │ │ │ ├── GameOverEventSystem.cs │ │ │ ├── GameOverEventSystem.cs.meta │ │ │ ├── GameOverRemovedEventSystem.cs │ │ │ ├── GameOverRemovedEventSystem.cs.meta │ │ │ ├── InputDestroyedEventSystem.cs │ │ │ ├── InputDestroyedEventSystem.cs.meta │ │ │ ├── MaxActionCountEventSystem.cs │ │ │ ├── MaxActionCountEventSystem.cs.meta │ │ │ ├── PositionEventSystem.cs │ │ │ ├── PositionEventSystem.cs.meta │ │ │ ├── ScoreEventSystem.cs │ │ │ ├── ScoreEventSystem.cs.meta │ │ │ ├── SelectedEventSystem.cs │ │ │ ├── SelectedEventSystem.cs.meta │ │ │ ├── SelectedRemovedEventSystem.cs │ │ │ └── SelectedRemovedEventSystem.cs.meta │ │ ├── Feature.cs │ │ ├── Feature.cs.meta │ │ ├── Game.meta │ │ ├── Game │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── GameAssetComponent.cs │ │ │ ├── GameAssetComponent.cs.meta │ │ │ ├── GameAssetLoadedComponent.cs │ │ │ ├── GameAssetLoadedComponent.cs.meta │ │ │ ├── GameBlockComponent.cs │ │ │ ├── GameBlockComponent.cs.meta │ │ │ ├── GameColorComponent.cs │ │ │ ├── GameColorComponent.cs.meta │ │ │ ├── GameColorListenerComponent.cs │ │ │ ├── GameColorListenerComponent.cs.meta │ │ │ ├── GameComboComponent.cs │ │ │ ├── GameComboComponent.cs.meta │ │ │ ├── GameDestroyedComponent.cs │ │ │ ├── GameDestroyedComponent.cs.meta │ │ │ ├── GameElementComponent.cs │ │ │ ├── GameElementComponent.cs.meta │ │ │ ├── GameElementTypeComponent.cs │ │ │ ├── GameElementTypeComponent.cs.meta │ │ │ ├── GameExsplosiveComponent.cs │ │ │ ├── GameExsplosiveComponent.cs.meta │ │ │ ├── GameFieldMovedComponent.cs │ │ │ ├── GameFieldMovedComponent.cs.meta │ │ │ ├── GameGameDestroyedListenerComponent.cs │ │ │ ├── GameGameDestroyedListenerComponent.cs.meta │ │ │ ├── GameIdComponent.cs │ │ │ ├── GameIdComponent.cs.meta │ │ │ ├── GameInComboComponent.cs │ │ │ ├── GameInComboComponent.cs.meta │ │ │ ├── GameMatchedComponent.cs │ │ │ ├── GameMatchedComponent.cs.meta │ │ │ ├── GameMovableComponent.cs │ │ │ ├── GameMovableComponent.cs.meta │ │ │ ├── GamePositionComponent.cs │ │ │ ├── GamePositionComponent.cs.meta │ │ │ ├── GamePositionListenerComponent.cs │ │ │ ├── GamePositionListenerComponent.cs.meta │ │ │ ├── GameRestartHappenedComponent.cs │ │ │ ├── GameRestartHappenedComponent.cs.meta │ │ │ ├── GameRewardComponent.cs │ │ │ ├── GameRewardComponent.cs.meta │ │ │ ├── GameSelectedComponent.cs │ │ │ ├── GameSelectedComponent.cs.meta │ │ │ ├── GameSelectedListenerComponent.cs │ │ │ ├── GameSelectedListenerComponent.cs.meta │ │ │ ├── GameSelectedRemovedListenerComponent.cs │ │ │ ├── GameSelectedRemovedListenerComponent.cs.meta │ │ │ ├── GameSelectionIdComponent.cs │ │ │ └── GameSelectionIdComponent.cs.meta │ │ ├── GameAttribute.cs │ │ ├── GameAttribute.cs.meta │ │ ├── GameComponentsLookup.cs │ │ ├── GameComponentsLookup.cs.meta │ │ ├── GameContext.cs │ │ ├── GameContext.cs.meta │ │ ├── GameEntity.cs │ │ ├── GameEntity.cs.meta │ │ ├── GameMatcher.cs │ │ └── GameMatcher.cs.meta │ │ ├── GameState.meta │ │ ├── GameState │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── GameStateActionCountComponent.cs │ │ │ ├── GameStateActionCountComponent.cs.meta │ │ │ ├── GameStateActionCountListenerComponent.cs │ │ │ ├── GameStateActionCountListenerComponent.cs.meta │ │ │ ├── GameStateGameOverComponent.cs │ │ │ ├── GameStateGameOverComponent.cs.meta │ │ │ ├── GameStateGameOverListenerComponent.cs │ │ │ ├── GameStateGameOverListenerComponent.cs.meta │ │ │ ├── GameStateGameOverRemovedListenerComponent.cs │ │ │ ├── GameStateGameOverRemovedListenerComponent.cs.meta │ │ │ ├── GameStateLastSelectedComponent.cs │ │ │ ├── GameStateLastSelectedComponent.cs.meta │ │ │ ├── GameStateMaxSelectedElementComponent.cs │ │ │ ├── GameStateMaxSelectedElementComponent.cs.meta │ │ │ ├── GameStateScoreComponent.cs │ │ │ ├── GameStateScoreComponent.cs.meta │ │ │ ├── GameStateScoreListenerComponent.cs │ │ │ └── GameStateScoreListenerComponent.cs.meta │ │ ├── GameStateAttribute.cs │ │ ├── GameStateAttribute.cs.meta │ │ ├── GameStateComponentsLookup.cs │ │ ├── GameStateComponentsLookup.cs.meta │ │ ├── GameStateContext.cs │ │ ├── GameStateContext.cs.meta │ │ ├── GameStateEntity.cs │ │ ├── GameStateEntity.cs.meta │ │ ├── GameStateMatcher.cs │ │ └── GameStateMatcher.cs.meta │ │ ├── Input.meta │ │ └── Input │ │ ├── Components.meta │ │ ├── Components │ │ ├── InputDeltaTimeComponent.cs │ │ ├── InputDeltaTimeComponent.cs.meta │ │ ├── InputDestroyedComponent.cs │ │ ├── InputDestroyedComponent.cs.meta │ │ ├── InputInputDestroyedListenerComponent.cs │ │ ├── InputInputDestroyedListenerComponent.cs.meta │ │ ├── InputPointerHoldingComponent.cs │ │ ├── InputPointerHoldingComponent.cs.meta │ │ ├── InputPointerHoldingPositionComponent.cs │ │ ├── InputPointerHoldingPositionComponent.cs.meta │ │ ├── InputPointerHoldingTimeComponent.cs │ │ ├── InputPointerHoldingTimeComponent.cs.meta │ │ ├── InputPointerReleasedComponent.cs │ │ ├── InputPointerReleasedComponent.cs.meta │ │ ├── InputPointerStartedHoldingComponent.cs │ │ ├── InputPointerStartedHoldingComponent.cs.meta │ │ ├── InputRealtimeSinceStartupComponent.cs │ │ ├── InputRealtimeSinceStartupComponent.cs.meta │ │ ├── InputRestartComponent.cs │ │ └── InputRestartComponent.cs.meta │ │ ├── InputAttribute.cs │ │ ├── InputAttribute.cs.meta │ │ ├── InputComponentsLookup.cs │ │ ├── InputComponentsLookup.cs.meta │ │ ├── InputContext.cs │ │ ├── InputContext.cs.meta │ │ ├── InputEntity.cs │ │ ├── InputEntity.cs.meta │ │ ├── InputMatcher.cs │ │ └── InputMatcher.cs.meta ├── Tools.meta ├── Tools │ ├── ComboEditor.meta │ ├── ComboEditor │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── ComboDataView.cs │ │ │ ├── ComboDataView.cs.meta │ │ │ ├── ComboWindow.cs │ │ │ ├── ComboWindow.cs.meta │ │ │ ├── PatternDataView.cs │ │ │ └── PatternDataView.cs.meta │ ├── Common.meta │ ├── Common │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── ListDataView.cs │ │ │ └── ListDataView.cs.meta │ ├── ComponentDrawers.meta │ └── ComponentDrawers │ │ ├── Editor.meta │ │ └── Editor │ │ ├── GridPositionTypeDrawer.cs │ │ ├── GridPositionTypeDrawer.cs.meta │ │ ├── GridSizeTypeDrawer.cs │ │ └── GridSizeTypeDrawer.cs.meta ├── UI.meta └── UI │ ├── Animations.meta │ ├── Animations │ ├── GameOverHidden.anim │ ├── GameOverHidden.anim.meta │ ├── GameOverShow.anim │ ├── GameOverShow.anim.meta │ ├── GameOverView.controller │ ├── GameOverView.controller.meta │ ├── LabelShow.anim │ ├── LabelShow.anim.meta │ ├── LabelView.controller │ ├── LabelView.controller.meta │ ├── RestartHidden.anim │ ├── RestartHidden.anim.meta │ ├── RestartShow.anim │ ├── RestartShow.anim.meta │ ├── RestartView.controller │ ├── RestartView.controller.meta │ ├── RewardHidden.anim │ ├── RewardHidden.anim.meta │ ├── RewardShow.anim │ ├── RewardShow.anim.meta │ ├── RewardView.controller │ └── RewardView.controller.meta │ ├── Prefabs.meta │ └── Prefabs │ ├── ActionCountPanel.prefab │ ├── ActionCountPanel.prefab.meta │ ├── GameOverPanel.prefab │ ├── GameOverPanel.prefab.meta │ ├── RestartPanel.prefab │ ├── RestartPanel.prefab.meta │ ├── ScorePanel.prefab │ └── ScorePanel.prefab.meta ├── Entitas.properties ├── Jenny.properties ├── LICENSE ├── Packages └── manifest.json ├── Preferences.properties ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── README.md └── icecube.userproperties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Libs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/.bee/docs/docs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/.bee/docs/docs-logo.png -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/.bee/docs/docset.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/.bee/docs/docset.doxyfile -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/.bee/docs/html.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/.bee/docs/html.doxyfile -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/.bee/docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/.bee/docs/icon.png -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/.bee/docs/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/.bee/docs/icon@2x.png -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/.bee/entitas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/.bee/entitas.sh -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/.bee/utils/rsync_exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/.bee/utils/rsync_exclude.txt -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/.bee/utils/rsync_include.txt: -------------------------------------------------------------------------------- 1 | *.png.meta 2 | -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/.gitignore -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/.travis.yml -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Addons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Addons.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Addons/Entitas.Unity.Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Addons/Entitas.Unity.Editor.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Addons/Entitas.Unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Addons/Entitas.Unity.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/CHANGELOG.md -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/CONTRIBUTING.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/CONTRIBUTING.md.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Entitas" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas.asmdef.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas.sln.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas.sln.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas.csproj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas.csproj.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Collector.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Collector.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Context.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Context.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Context/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Context/Context.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Context/IContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Context/IContext.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Context/IContexts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Context/IContexts.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/ContextInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/ContextInfo.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/ContextInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/ContextInfo.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/EntitasException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/EntitasException.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/EntitasResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/EntitasResources.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/Entity.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/Entity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/Entity.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/IAERC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/IAERC.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/IAERC.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/IAERC.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/IEntity.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/SafeAERC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/SafeAERC.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/UnsafeAERC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Entity/UnsafeAERC.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/EntityIndex.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/EntityIndex.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Extensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Extensions.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Group.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Group.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Group/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Group/Group.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Group/Group.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Group/Group.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Group/GroupEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Group/GroupEvent.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Group/IGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Group/IGroup.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Group/IGroup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Group/IGroup.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/IComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/IComponent.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/IComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/IComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Matcher.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Matcher.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Matcher/Matcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Matcher/Matcher.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Systems.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Systems.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Systems/JobSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Systems/JobSystem.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Systems/Systems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/Systems/Systems.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/version.txt: -------------------------------------------------------------------------------- 1 | 1.13.0 2 | -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/version.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Entitas/Entitas/version.txt.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/EntitasUpgradeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/EntitasUpgradeGuide.md -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/EntitasUpgradeGuide.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/EntitasUpgradeGuide.md.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/ISSUE_TEMPLATE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/ISSUE_TEMPLATE.md.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/LICENSE.txt -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/LICENSE.txt.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Libraries.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Libraries.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Libraries/Dependencies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Libraries/Dependencies.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Libraries/NSpec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Libraries/NSpec.dll -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Libraries/NSpec.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Libraries/NSpec.dll.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Libraries/NSpecRunner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Libraries/NSpecRunner.dll -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Libraries/NSpecRunner.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Libraries/NSpecRunner.dll.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Libraries/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Libraries/nunit.framework.dll -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/Libraries/nunit.framework.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/Libraries/nunit.framework.dll.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/README.md -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/README.md.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/bee.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/bee.sh -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/bee.sh.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/bee.sh.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/CHANGELOG.md -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor/Entitas.Migration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor/Entitas.Migration.dll -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor/Entitas.Migration.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor/Entitas.Migration.dll.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor/Entitas.Unity.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor/Entitas.Unity.Editor.dll -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor/Images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor/Images.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor/Images/EntitasHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor/Images/EntitasHeader.png -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Editor/Plugins.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.Unity.dll -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.Unity.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.Unity.dll.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.VisualDebugging.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.VisualDebugging.Unity.dll -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.dll -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.dll.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.xml -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/Entitas.xml.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/EntitasUpgradeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/EntitasUpgradeGuide.md -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/EntitasUpgradeGuide.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/EntitasUpgradeGuide.md.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/LICENSE.txt -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/LICENSE.txt.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/README.md -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/cvs/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/cvs/README.md.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/icon.png -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/icon.png.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/tree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/tree.txt -------------------------------------------------------------------------------- /Assets/Libs/Entitas-CSharp-1.13.0/tree.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-CSharp-1.13.0/tree.txt.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/ComponentAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/ComponentAccessor.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/ComponentAccessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/ComponentAccessor.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Components.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Components/AddedListenersComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Components/AddedListenersComponent.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Components/AddedListenersComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Components/AddedListenersComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Components/RemovedListenersComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Components/RemovedListenersComponent.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Components/UniqueComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Components/UniqueComponents.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Components/UniqueComponents.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Components/UniqueComponents.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/ContextDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/ContextDefinition.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/ContextDefinition.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/ContextDefinition.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Debugging.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Debugging.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Debugging/VisualDebuggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Debugging/VisualDebuggingExtensions.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Editor.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Entitas.Generics.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Entitas.Generics.asmdef -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Entitas.Generics.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Entitas.Generics.asmdef.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Events.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Events.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Events/EventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Events/EventSystem.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Events/EventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Events/EventSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Events/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Events/Events.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Events/Events.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Events/Events.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/GenericContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/GenericContext.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/GenericContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/GenericContext.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/GenericEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/GenericEntity.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/GenericEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/GenericEntity.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/GenericMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/GenericMatcher.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/GenericMatcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/GenericMatcher.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Helpers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Helpers.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Helpers/ComponentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Helpers/ComponentHelper.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Helpers/ComponentHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Helpers/ComponentHelper.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Helpers/ContextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Helpers/ContextHelper.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Helpers/ContextHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Helpers/ContextHelper.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Helpers/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Helpers/Feature.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Helpers/Feature.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Helpers/Feature.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Helpers/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Helpers/ReflectionHelper.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Helpers/ReflectionHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Helpers/ReflectionHelper.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Interfaces.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Interfaces.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Interfaces/IEventComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Interfaces/IEventComponent.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Interfaces/IEventComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Interfaces/IEventComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Interfaces/IFlagComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Interfaces/IFlagComponent.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Interfaces/IFlagComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Interfaces/IFlagComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Interfaces/IListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Interfaces/IListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Interfaces/IListenerComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Interfaces/IListenerComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Interfaces/IUniqueComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Interfaces/IUniqueComponent.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Interfaces/IUniqueComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Interfaces/IUniqueComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Interfaces/IValueComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Interfaces/IValueComponent.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Interfaces/IValueComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Interfaces/IValueComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Systems.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Systems.meta -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Systems/GenericReactiveSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Systems/GenericReactiveSystem.cs -------------------------------------------------------------------------------- /Assets/Libs/Entitas-Generics/Systems/GenericReactiveSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Libs/Entitas-Generics/Systems/GenericReactiveSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/BlockMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Materials/BlockMaterial.mat -------------------------------------------------------------------------------- /Assets/Materials/BlockMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Materials/BlockMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/ExsplosiveMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Materials/ExsplosiveMaterial.mat -------------------------------------------------------------------------------- /Assets/Materials/ExsplosiveMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Materials/ExsplosiveMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/NotMovableBlockMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Materials/NotMovableBlockMaterial.mat -------------------------------------------------------------------------------- /Assets/Materials/NotMovableBlockMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Materials/NotMovableBlockMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/SelectedMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Materials/SelectedMaterial.mat -------------------------------------------------------------------------------- /Assets/Materials/SelectedMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Materials/SelectedMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/ComboDefinitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Resources/ComboDefinitions.json -------------------------------------------------------------------------------- /Assets/Resources/ComboDefinitions.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Resources/ComboDefinitions.json.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Resources/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/Block.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Resources/Prefabs/Block.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/Block.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Resources/Prefabs/Block.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/Element.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Resources/Prefabs/Element.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/Element.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Resources/Prefabs/Element.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/ExsplosiveBlock.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Resources/Prefabs/ExsplosiveBlock.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/ExsplosiveBlock.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Resources/Prefabs/ExsplosiveBlock.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/NotMovableBlock.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Resources/Prefabs/NotMovableBlock.prefab -------------------------------------------------------------------------------- /Assets/Resources/Prefabs/NotMovableBlock.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Resources/Prefabs/NotMovableBlock.prefab.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Scenes/Main.unity -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Scenes/Main.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/test.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Scenes/test.unity -------------------------------------------------------------------------------- /Assets/Scenes/test.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Scenes/test.unity.meta -------------------------------------------------------------------------------- /Assets/Sources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edae727a8e474890ad6391b27b1cb619 3 | timeCreated: 1527324908 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Config/Components.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config/Components/MapSizeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Config/Components/MapSizeComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config/Components/MapSizeComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Config/Components/MapSizeComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config/Components/MinMatchCountComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Config/Components/MinMatchCountComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config/Components/ScoringTableComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Config/Components/ScoringTableComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config/Components/TypeCountComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Config/Components/TypeCountComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config/ConfigContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Config/ConfigContext.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config/ConfigContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Config/ConfigContext.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config/ConfigEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Config/ConfigEntity.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config/ConfigEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Config/ConfigEntity.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config/ConfigEventSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Config/ConfigEventSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Config/ConfigEventSystems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Config/ConfigEventSystems.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Contexts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Contexts.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Contexts.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Contexts.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7885665d2ef448d8beeeff407c12efb7 3 | timeCreated: 1527334581 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data/ComboDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Data/ComboDefinition.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data/ComboDefinition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d225ceff72c46668af06f6e224c53a2 3 | timeCreated: 1527803070 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data/ComboDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Data/ComboDefinitions.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data/ComboDefinitions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4332a80959f4bc18fe6e43ce9c5d69b 3 | timeCreated: 1527944024 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data/ComboPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Data/ComboPattern.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data/ComboPattern.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b848d0ced99b467a8f562aa771390d57 3 | timeCreated: 1527948423 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data/GridPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Data/GridPosition.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data/GridPosition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b428c2b13974a34827f17cf90916ca8 3 | timeCreated: 1527334879 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data/GridSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Data/GridSize.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data/GridSize.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Data/GridSize.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data/PositionConversionExstensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Data/PositionConversionExstensions.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Data/PositionConversionExstensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7ef6e09a34348c4802a7baca54d83fe 3 | timeCreated: 1527334670 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game.asmdef -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game.asmdef.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b446719f535647c890abfcb57cff99d1 3 | timeCreated: 1527324899 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Blocker.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdf639685f4a43448070baea43afc31a 3 | timeCreated: 1527372064 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Blocker/BlockComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Blocker/BlockComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Blocker/BlockComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Blocker/BlockComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Combo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b3c20d83c8346578ae61b9bec68022c 3 | timeCreated: 1527375992 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Combo/ComboComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Combo/ComboComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Combo/ComboComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69dbaa8cd80f4afa9fb813d2fef112b7 3 | timeCreated: 1527519408 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Combo/ComboDetectionSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Combo/ComboDetectionSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Combo/ComboDetectionSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dd37a8f03b246188a7136b039d2edee 3 | timeCreated: 1527513444 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Combo/InComboComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Combo/InComboComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Combo/InComboComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a3cd800ef684860a28947bcaca2a586 3 | timeCreated: 1527513292 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Counter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 933b22b988684d40a38fa788faafb10d 3 | timeCreated: 1527540137 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Counter/ActionCounterSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Counter/ActionCounterSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Counter/ActionCounterSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f9455db48f048998bd8a19b462113c1 3 | timeCreated: 1527361701 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Destroy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Destroy.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Destroy/DestroyEntitySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Destroy/DestroyEntitySystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Destroy/DestroyEntitySystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c24406eba04c43149ac0e6b99e71d718 3 | timeCreated: 1527327165 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Destroy/DestroyedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Destroy/DestroyedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Destroy/DestroyedComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1074130e59e40998086a2d725141e95 3 | timeCreated: 1527327187 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Exsplosion.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02fda1fa5513482ba6ffe510b6d79809 3 | timeCreated: 1527373167 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Exsplosion/ExplosionSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Exsplosion/ExplosionSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Exsplosion/ExplosionSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf822d6d86384403bdc1df2877b84c80 3 | timeCreated: 1527373979 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Exsplosion/ExplosiveComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Exsplosion/ExplosiveComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Exsplosion/ExplosiveComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c087e2a234647bb8ccedd2611ed47bd 3 | timeCreated: 1527373213 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Fill.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d98760dcf4e4378aaf10b00b27eb497 3 | timeCreated: 1527348461 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Fill/AddElementsSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Fill/AddElementsSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Fill/AddElementsSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5787b88b6c734b1581d4c255e81fb984 3 | timeCreated: 1527326981 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Fill/FillAllElementsSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Fill/FillAllElementsSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Fill/FillAllElementsSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 202bb2fe96664f82a2c4cacc84c400cd 3 | timeCreated: 1527369869 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/GameContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/GameContext.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/GameContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/GameContext.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/GameEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/GameEntity.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/GameEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/GameEntity.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/GameEventSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/GameEventSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/GameEventSystems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/GameEventSystems.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/GameOver.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c50e1d78c4d149d1af7478df9732aea4 3 | timeCreated: 1527365351 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/GameOver/GameOverSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/GameOver/GameOverSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/GameOver/GameOverSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36f535550d04467d96be4f80d687e081 3 | timeCreated: 1527365358 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/GameSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/GameSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/GameSystems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ae05340b4c74213b724ebafb528e2e2 3 | timeCreated: 1527326368 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/General.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/General.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/General/ElementComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/General/ElementComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/General/ElementComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99972cd5458843c188bae762875baf4a 3 | timeCreated: 1527327313 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/General/ElementTypeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/General/ElementTypeComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/General/ElementTypeComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1b7cce5a14443d3a36563d0c18dcc51 3 | timeCreated: 1527328862 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/General/IdComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/General/IdComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/General/IdComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 551f297257e3492186fd10c2d71454b5 3 | timeCreated: 1527333432 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Match.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f5d452589b7497ba7901a1f5d727fb1 3 | timeCreated: 1527347717 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Match/Add.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Match/Add.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Match/Add/MarkMatchedSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Match/Add/MarkMatchedSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Match/Add/MarkMatchedSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9adfc012dd3f455da3183fc37b52941d 3 | timeCreated: 1527347774 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Match/Clear.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Match/Clear.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Match/Clear/RemoveMatchedSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Match/Clear/RemoveMatchedSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Match/Clear/RemoveMatchedSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6d2dd53918f4e0abec76f5b092037e9 3 | timeCreated: 1527348042 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Match/MatchedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Match/MatchedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Match/MatchedComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14ad8e821e244518b0d00ca8fe25f1ea 3 | timeCreated: 1527347726 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Move.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Move.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Move/FieldMovedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Move/FieldMovedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Move/FieldMovedComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9acdca4d104e46ba9eca644f78d1955e 3 | timeCreated: 1527350313 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Move/IsMoving.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Move/IsMoving.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Move/IsMoving.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Move/IsMoving.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Move/MovableComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Move/MovableComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Move/MovableComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 521fd9554dbb4591accca1897e907cb7 3 | timeCreated: 1527507523 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Move/MoveSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Move/MoveSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Move/MoveSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d16aedf6daf143fb99a48c89551e8c7f 3 | timeCreated: 1527348493 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Move/PositionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Move/PositionComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Move/PositionComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Move/PositionComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Restart.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c5e372d636a41cebcf2faf046d8075a 3 | timeCreated: 1527368943 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Restart/GameRestartSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Restart/GameRestartSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Restart/GameRestartSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d000c5906f274976903913932ed3ee06 3 | timeCreated: 1527368963 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Restart/RestartHappenedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Restart/RestartHappenedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Restart/RestartHappenedComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1797276cf9841fa85768872e16d746d 3 | timeCreated: 1529003781 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Reward.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25fb79644ae94c89a4a11283faf63e44 3 | timeCreated: 1527354634 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Reward/Emission.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Reward/Emission.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Reward/Emission/ComboRewardEmitterSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 129f88e89b47450087632e463d8e56bf 3 | timeCreated: 1527519602 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Reward/Emission/ExsplosiveRewardEmitterSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35ca48229ba34ae2a480c4b195686716 3 | timeCreated: 1527509261 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Reward/Emission/RewardEmitterSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Reward/Emission/RewardEmitterSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Reward/Reception.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0daad7cc7abc4920a3faa0b1b73570e7 3 | timeCreated: 1527513549 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Reward/Reception/ApplyRewardSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Reward/Reception/ApplyRewardSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Reward/Reception/ApplyRewardSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 180dcd822767419c9bf83e3eb74bfa2c 3 | timeCreated: 1527509071 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Reward/RewardComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Reward/RewardComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Reward/RewardComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98251d9aa9984ba9a22ed2aa22c01dcc 3 | timeCreated: 1527356710 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Reward/RewardSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Reward/RewardSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Reward/RewardSystems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85934ad6e439426fb2ee84c74679aaa8 3 | timeCreated: 1527510274 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Selection.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/Add.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 472e5fe544ec402eb79dc685cab27987 3 | timeCreated: 1527539176 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/Add/AddSelectionSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Selection/Add/AddSelectionSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/Add/AddSelectionSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71309f4333d340969b532b02fe80c514 3 | timeCreated: 1527345122 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/Clear.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76cc724f65794a23be0f563f6a3f256b 3 | timeCreated: 1527539156 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/Clear/DropSelectionOnMoveSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfe63a75c0d24182881768de38216afb 3 | timeCreated: 1527350389 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/Clear/DropSelectionSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Selection/Clear/DropSelectionSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/Clear/DropSelectionSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1d0edfc5ad2446eaf923a91edde0d1e 3 | timeCreated: 1527347046 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/Remove.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ef98a65b8bc4d9d84ec4f3b5745ce19 3 | timeCreated: 1527539188 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/Remove/UnselectionSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Selection/Remove/UnselectionSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/Remove/UnselectionSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b90b1d7d8026498791bcb9d490e7000b 3 | timeCreated: 1527351721 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/SelectedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Selection/SelectedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/SelectedComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67a99b98bae8484f9593cb47ba9b78f8 3 | timeCreated: 1527329336 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/SelectionIdComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/Selection/SelectionIdComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/Selection/SelectionIdComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b44d643fbe7a47cb9234f1b12d9a2559 3 | timeCreated: 1527352258 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/View.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/View.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/View/AssetComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/View/AssetComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/View/AssetComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbbfa7b006af4755af1615ffa683f034 3 | timeCreated: 1527325023 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/View/AssetLoadedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/View/AssetLoadedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/View/AssetLoadedComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/View/AssetLoadedComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/View/ColorComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/View/ColorComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/View/ColorComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 777480e48e3044ef88cba66f03bb12d3 3 | timeCreated: 1527329170 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/View/ViewSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Game/View/ViewSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Game/View/ViewSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81528b4650ef42d7b7c23a6e66611d63 3 | timeCreated: 1527330076 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/ActionCountComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/ActionCountComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/ActionCountComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/ActionCountComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/Exstension.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5c5aebbb45b4b218b53d931faf2322b 3 | timeCreated: 1527518252 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/Exstension/GameStateExstensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1df82d4ea4044aacbe97010a1b12bd77 3 | timeCreated: 1527518124 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/GameOverComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/GameOverComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/GameOverComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a1794dd00554c4e91d84a2d0f48c6b1 3 | timeCreated: 1527365137 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/GameStateContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/GameStateContext.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/GameStateContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/GameStateContext.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/GameStateEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/GameStateEntity.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/GameStateEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/GameStateEntity.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/GameStateEventSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/GameStateEventSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/GameStateEventSystems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/GameStateEventSystems.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/GameStateSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/GameStateSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/GameStateSystems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e5e01de424e4ac4905fc479bf143174 3 | timeCreated: 1527344875 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/Init.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d684189979a43749870cced4e63f018 3 | timeCreated: 1527364957 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/Init/InitStateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/Init/InitStateSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/Init/InitStateSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b7eae3abf824653986689716d1f04f6 3 | timeCreated: 1527351850 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/LastSelectedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/LastSelectedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/LastSelectedComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3efab80778042238163cd9734b24cb0 3 | timeCreated: 1527329437 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/MaxSelectedElementComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/MaxSelectedElementComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/MaxSelectedElementComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3ece132aaaf4e56ab40068ee1981772 3 | timeCreated: 1527351819 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/Restart.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95e2cb200c984b368b9e4b6930eb1b22 3 | timeCreated: 1527368327 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/Restart/GameStateRestartSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/Restart/GameStateRestartSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/Restart/GameStateRestartSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd264f1e228240d5ac9e05b24eaf8398 3 | timeCreated: 1527368379 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/ScoreComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/GameState/ScoreComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/GameState/ScoreComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d993855415240f18e1186d1625360fb 3 | timeCreated: 1527347575 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56056aa9374c48f2929aee2d57c3a646 3 | timeCreated: 1527326300 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/InputContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Input/InputContext.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/InputContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Input/InputContext.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/InputEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Input/InputEntity.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/InputEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Input/InputEntity.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/InputSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Input/InputSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/InputSystems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f35f0641fc0440ea5ab69b8aa7dc36d 3 | timeCreated: 1527326311 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Pointer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cee7dd325acf4d2698496ba9f74dad75 3 | timeCreated: 1527341727 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Pointer/PointerHoldingComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Input/Pointer/PointerHoldingComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Pointer/PointerHoldingComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a29ca22603ab40cd9d77b89a096a7927 3 | timeCreated: 1527342581 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Pointer/PointerHoldingPositionComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dd54adcf4cc43d0849ed7fc89805f27 3 | timeCreated: 1527342881 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Pointer/PointerHoldingTimeComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2092704595e45ba8afe348481993ad1 3 | timeCreated: 1527342759 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Pointer/PointerReleasedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Input/Pointer/PointerReleasedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Pointer/PointerReleasedComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e2a942469e948349b3ace7e2e3275ef 3 | timeCreated: 1527342740 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Pointer/PointerStartedHoldingComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97677ae4ae224d7f970c193cf0caff52 3 | timeCreated: 1527342700 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Pointer/UpdateInputSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Input/Pointer/UpdateInputSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Pointer/UpdateInputSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e0e113acc0d4479ae3b9641cde13344 3 | timeCreated: 1527341390 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Restart.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f7c7955b5344181befea5082fe6d1e3 3 | timeCreated: 1527368226 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Restart/RestartComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Input/Restart/RestartComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Restart/RestartComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db5d2837f3e04b359da58c4d016e2754 3 | timeCreated: 1527368234 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Time.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53b368bed0a84f7d9e312c6a6c47009d 3 | timeCreated: 1527341702 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Time/DeltaTimeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Input/Time/DeltaTimeComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Time/DeltaTimeComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fd0a078c70b405fbf1f9adc960af899 3 | timeCreated: 1527340632 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Time/RealtimeSinceStartupComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Input/Time/RealtimeSinceStartupComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Time/RealtimeSinceStartupComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf10f4a73b454255b90f1288a5927fd9 3 | timeCreated: 1527340848 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Time/UpdateTimeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Input/Time/UpdateTimeSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Input/Time/UpdateTimeSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66096d26607d4f0fab568ea62be1eb4d 3 | timeCreated: 1527340972 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Interface.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface/IElementService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Interface/IElementService.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface/IElementService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Interface/IElementService.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface/IInputService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Interface/IInputService.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface/IInputService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af76876e7278402280bae656b8114a22 3 | timeCreated: 1527339566 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Interface/IService.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface/IService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Interface/IService.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface/IServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Interface/IServices.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface/IServices.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Interface/IServices.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface/ITimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Interface/ITimeService.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface/ITimeService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 662948c733ef435fa75797d004d58a94 3 | timeCreated: 1527340664 -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface/IViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Entitas.Game/Interface/IViewService.cs -------------------------------------------------------------------------------- /Assets/Sources/Entitas.Game/Interface/IViewService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1861cc09ad248a3ab7488c538601c70 3 | timeCreated: 1527324667 -------------------------------------------------------------------------------- /Assets/Sources/GameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/GameController.cs -------------------------------------------------------------------------------- /Assets/Sources/GameController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/GameController.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/RootSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/RootSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/RootSystems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5887bbe520d47f48de4b2b0d330ad5f 3 | timeCreated: 1527323643 -------------------------------------------------------------------------------- /Assets/Sources/Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Services.cs -------------------------------------------------------------------------------- /Assets/Sources/Services.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba50bbc1db2647c980f62f317c6f14f1 3 | timeCreated: 1527324416 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer.meta -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/Services.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca807526cf734ec8abcab6755d795ea7 3 | timeCreated: 1527324631 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/Services/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/Services/Service.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/Services/Service.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c08fa17a6c94bf994db9e87212f031d 3 | timeCreated: 1527327669 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/Services/UnityElementService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/Services/UnityElementService.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/Services/UnityElementService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc64e8c0cc0b47838ecf0465da17fc55 3 | timeCreated: 1527327388 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/Services/UnityInputService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/Services/UnityInputService.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/Services/UnityInputService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b91dfd7765134060a6f9111ef81bc123 3 | timeCreated: 1527333779 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/Services/UnityTimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/Services/UnityTimeService.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/Services/UnityTimeService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a607e05ad55e4c8dba0ddbd33c8376ed 3 | timeCreated: 1527340739 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/Services/UnityViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/Services/UnityViewService.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/Services/UnityViewService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f66e94f929d42cca3d7fce6a50572db 3 | timeCreated: 1527325131 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/UnityRenderer.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/UnityRenderer.asmdef -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/UnityRenderer.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/UnityRenderer.asmdef.meta -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a413c668890461ca9710cac9d7c3858 3 | timeCreated: 1527324752 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/IView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/IView.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/IView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e0d4a6d87ed4bbe820225b615ef489d 3 | timeCreated: 1527324763 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/Listeners.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb4cf4555f884f3eafe01ab129a22138 3 | timeCreated: 1527333689 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/Listeners/ColorListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/Listeners/ColorListener.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/Listeners/ColorListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 574549809c574be69991f5ae43c13b2a 3 | timeCreated: 1527330716 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/Listeners/IEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/Listeners/IEventListener.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/Listeners/IEventListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3904b39492494431bf3a40cb0d892403 3 | timeCreated: 1527324849 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/Listeners/PositionListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/Listeners/PositionListener.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/Listeners/PositionListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/Listeners/PositionListener.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/Listeners/SelectedListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/Listeners/SelectedListener.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/Listeners/SelectedListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fae699fc55e648c0888f82746ac27167 3 | timeCreated: 1527331473 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/UI.meta -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UI/UIActionCountView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/UI/UIActionCountView.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UI/UIActionCountView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03a93800bbc54659b5368f353d2dec87 3 | timeCreated: 1527361581 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UI/UIGameOverView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/UI/UIGameOverView.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UI/UIGameOverView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2416beb8d8434d6d97e8632e3e7be823 3 | timeCreated: 1527365775 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UI/UIRestartView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/UI/UIRestartView.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UI/UIRestartView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be6089af384248f6b9dc8ddd9ff4099f 3 | timeCreated: 1527370445 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UI/UIRewardView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/UI/UIRewardView.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UI/UIRewardView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cad4f63504243c5b3ec2cf21ce36fb7 3 | timeCreated: 1527357889 -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UI/UIScoreView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/UI/UIScoreView.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UI/UIScoreView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/UI/UIScoreView.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UnityView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/UnityView.cs -------------------------------------------------------------------------------- /Assets/Sources/Unity.Renderer/View/UnityView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/Unity.Renderer/View/UnityView.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/Performance.sln.DotSettings.user.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/Performance.sln.DotSettings.user.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/Performance.sln.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/Performance.sln.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/Readme.txt -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/Readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/Readme.txt.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.App/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.App/App.config -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.App/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.App/App.xaml -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.App/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.App/App.xaml.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.App/GlobalCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.App/GlobalCommands.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.App/Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.App/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Common/Behaviors/Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Common/Behaviors/Mouse.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Common/BindingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Common/BindingProxy.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Common/FileSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Common/FileSerializer.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Common/JsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Common/JsonSerializer.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Common/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Common/Logger.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Common/NotifyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Common/NotifyBase.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Common/NotifyRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Common/NotifyRouter.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Common/PauseTokenSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Common/PauseTokenSource.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Common/RelayCommand.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/Class1.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/Class1.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/Factories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/Factories.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/Game.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/Game.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/Game.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/GameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/GameController.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/Properties.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/Properties.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/RootSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/RootSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/RootSystems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/RootSystems.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/Services.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/Services.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/Services.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/Services.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/Services.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/Services/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/Services/Service.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/View.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/View.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/View/IView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/View/IView.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/View/Listeners.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/View/Listeners.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/View/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/View/UI.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/View/UI/UIComboView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/View/UI/UIComboView.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/View/UI/UIRewardView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/View/UI/UIRewardView.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/View/UI/UIScoreView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/View/UI/UIScoreView.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/View/UnityView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/View/UnityView.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/bin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/bin.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.Game/obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.Game/obj.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/InputViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/InputViewModel.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/Properties.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/Properties.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/ViewsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/ViewsViewModel.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/WorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/WorkContext.cs -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/bin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/bin.meta -------------------------------------------------------------------------------- /Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/WpfRenderer/cvs/Performance.ViewModel/obj.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Components.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Components/Interfaces.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Components/Interfaces.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Components/Interfaces/IDestroyedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Components/Interfaces/IDestroyedEntity.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Components/Interfaces/IDestroyedEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Components/Interfaces/IDestroyedEntity.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/Components.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/Components/ConfigComboDefinitionsComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/Components/ConfigComboDefinitionsComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/Components/ConfigMapSizeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/Components/ConfigMapSizeComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/Components/ConfigMapSizeComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/Components/ConfigMapSizeComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/Components/ConfigMaxActionCountComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/Components/ConfigMaxActionCountComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/Components/ConfigMinMatchCountComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/Components/ConfigMinMatchCountComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/Components/ConfigScoringTableComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/Components/ConfigScoringTableComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/Components/ConfigTypeCountComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/Components/ConfigTypeCountComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/Components/ConfigTypeCountComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/Components/ConfigTypeCountComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/ConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/ConfigAttribute.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/ConfigAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/ConfigAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/ConfigComponentsLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/ConfigComponentsLookup.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/ConfigComponentsLookup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/ConfigComponentsLookup.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/ConfigContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/ConfigContext.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/ConfigContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/ConfigContext.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/ConfigEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/ConfigEntity.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/ConfigEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/ConfigEntity.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/ConfigMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/ConfigMatcher.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Config/ConfigMatcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Config/ConfigMatcher.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Contexts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Contexts.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Contexts.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Contexts.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/ActionCountListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/ActionCountListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/ColorListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/ColorListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/ColorListenerComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/ColorListenerComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/GameDestroyedListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/GameDestroyedListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/GameOverListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/GameOverListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/GameOverListenerComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/GameOverListenerComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/InputDestroyedListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/InputDestroyedListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/MaxActionCountListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/MaxActionCountListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/PositionListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/PositionListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/PositionListenerComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/PositionListenerComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/ScoreListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/ScoreListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/ScoreListenerComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/ScoreListenerComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Components/SelectedListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Components/SelectedListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/ConfigEventSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/ConfigEventSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/ConfigEventSystems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/ConfigEventSystems.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/GameEventSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/GameEventSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/GameEventSystems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/GameEventSystems.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/GameStateEventSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/GameStateEventSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/GameStateEventSystems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/GameStateEventSystems.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/InputEventSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/InputEventSystems.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/InputEventSystems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/InputEventSystems.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IActionCountListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IActionCountListener.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IActionCountListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IActionCountListener.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IColorListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IColorListener.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IColorListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IColorListener.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IGameDestroyedListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IGameDestroyedListener.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IGameDestroyedListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IGameDestroyedListener.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IGameOverListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IGameOverListener.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IGameOverListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IGameOverListener.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IGameOverRemovedListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IGameOverRemovedListener.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IInputDestroyedListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IInputDestroyedListener.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IInputDestroyedListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IInputDestroyedListener.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IMaxActionCountListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IMaxActionCountListener.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IMaxActionCountListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IMaxActionCountListener.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IPositionListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IPositionListener.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IPositionListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IPositionListener.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IScoreListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IScoreListener.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/IScoreListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/IScoreListener.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/ISelectedListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/ISelectedListener.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/ISelectedListener.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/ISelectedListener.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Interfaces/ISelectedRemovedListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Interfaces/ISelectedRemovedListener.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/ActionCountEventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/ActionCountEventSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/ActionCountEventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/ActionCountEventSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/ColorEventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/ColorEventSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/ColorEventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/ColorEventSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/GameDestroyedEventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/GameDestroyedEventSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/GameDestroyedEventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/GameDestroyedEventSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/GameOverEventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/GameOverEventSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/GameOverEventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/GameOverEventSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/GameOverRemovedEventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/GameOverRemovedEventSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/GameOverRemovedEventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/GameOverRemovedEventSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/InputDestroyedEventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/InputDestroyedEventSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/InputDestroyedEventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/InputDestroyedEventSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/MaxActionCountEventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/MaxActionCountEventSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/MaxActionCountEventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/MaxActionCountEventSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/PositionEventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/PositionEventSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/PositionEventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/PositionEventSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/ScoreEventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/ScoreEventSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/ScoreEventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/ScoreEventSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/SelectedEventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/SelectedEventSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/SelectedEventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/SelectedEventSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/SelectedRemovedEventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/SelectedRemovedEventSystem.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Events/Systems/SelectedRemovedEventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Events/Systems/SelectedRemovedEventSystem.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Feature.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Feature.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Feature.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameAssetComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameAssetComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameAssetComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameAssetComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameAssetLoadedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameAssetLoadedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameAssetLoadedComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameAssetLoadedComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameBlockComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameBlockComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameBlockComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameBlockComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameColorComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameColorComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameColorComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameColorComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameColorListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameColorListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameComboComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameComboComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameComboComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameComboComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameDestroyedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameDestroyedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameDestroyedComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameDestroyedComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameElementComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameElementComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameElementComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameElementComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameElementTypeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameElementTypeComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameElementTypeComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameElementTypeComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameExsplosiveComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameExsplosiveComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameExsplosiveComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameExsplosiveComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameFieldMovedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameFieldMovedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameFieldMovedComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameFieldMovedComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameIdComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameIdComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameIdComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameIdComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameInComboComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameInComboComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameInComboComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameInComboComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameMatchedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameMatchedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameMatchedComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameMatchedComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameMovableComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameMovableComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameMovableComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameMovableComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GamePositionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GamePositionComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GamePositionComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GamePositionComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GamePositionListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GamePositionListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameRestartHappenedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameRestartHappenedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameRewardComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameRewardComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameRewardComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameRewardComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameSelectedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameSelectedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameSelectedComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameSelectedComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameSelectedListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameSelectedListenerComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameSelectionIdComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameSelectionIdComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/Components/GameSelectionIdComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/Components/GameSelectionIdComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/GameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/GameAttribute.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/GameAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/GameAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/GameComponentsLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/GameComponentsLookup.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/GameComponentsLookup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/GameComponentsLookup.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/GameContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/GameContext.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/GameContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/GameContext.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/GameEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/GameEntity.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/GameEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/GameEntity.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/GameMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/GameMatcher.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Game/GameMatcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Game/GameMatcher.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState/Components.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState/Components/GameStateScoreComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState/Components/GameStateScoreComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState/GameStateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState/GameStateAttribute.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState/GameStateAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState/GameStateAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState/GameStateComponentsLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState/GameStateComponentsLookup.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState/GameStateComponentsLookup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState/GameStateComponentsLookup.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState/GameStateContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState/GameStateContext.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState/GameStateContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState/GameStateContext.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState/GameStateEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState/GameStateEntity.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState/GameStateEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState/GameStateEntity.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState/GameStateMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState/GameStateMatcher.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/GameState/GameStateMatcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/GameState/GameStateMatcher.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/Components.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/Components/InputDeltaTimeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/Components/InputDeltaTimeComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/Components/InputDeltaTimeComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/Components/InputDeltaTimeComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/Components/InputDestroyedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/Components/InputDestroyedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/Components/InputDestroyedComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/Components/InputDestroyedComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/Components/InputPointerHoldingComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/Components/InputPointerHoldingComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/Components/InputPointerReleasedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/Components/InputPointerReleasedComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/Components/InputRestartComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/Components/InputRestartComponent.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/Components/InputRestartComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/Components/InputRestartComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/InputAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/InputAttribute.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/InputAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/InputAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/InputComponentsLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/InputComponentsLookup.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/InputComponentsLookup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/InputComponentsLookup.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/InputContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/InputContext.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/InputContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/InputContext.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/InputEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/InputEntity.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/InputEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/InputEntity.cs.meta -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/InputMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/InputMatcher.cs -------------------------------------------------------------------------------- /Assets/Sources/cvs/Input/InputMatcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Sources/cvs/Input/InputMatcher.cs.meta -------------------------------------------------------------------------------- /Assets/Tools.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools.meta -------------------------------------------------------------------------------- /Assets/Tools/ComboEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools/ComboEditor.meta -------------------------------------------------------------------------------- /Assets/Tools/ComboEditor/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools/ComboEditor/Editor.meta -------------------------------------------------------------------------------- /Assets/Tools/ComboEditor/Editor/ComboDataView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools/ComboEditor/Editor/ComboDataView.cs -------------------------------------------------------------------------------- /Assets/Tools/ComboEditor/Editor/ComboDataView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39737ef8b4924465beac9de8d070f6ca 3 | timeCreated: 1527965780 -------------------------------------------------------------------------------- /Assets/Tools/ComboEditor/Editor/ComboWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools/ComboEditor/Editor/ComboWindow.cs -------------------------------------------------------------------------------- /Assets/Tools/ComboEditor/Editor/ComboWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools/ComboEditor/Editor/ComboWindow.cs.meta -------------------------------------------------------------------------------- /Assets/Tools/ComboEditor/Editor/PatternDataView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools/ComboEditor/Editor/PatternDataView.cs -------------------------------------------------------------------------------- /Assets/Tools/ComboEditor/Editor/PatternDataView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7abce910b1b40eaba8938d0a35ae45b 3 | timeCreated: 1527966642 -------------------------------------------------------------------------------- /Assets/Tools/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bcad13bebfb645e782b462925d55545b 3 | timeCreated: 1527962984 -------------------------------------------------------------------------------- /Assets/Tools/Common/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b45929dd0c7b4e4786f3f7e8ae3a8a72 3 | timeCreated: 1527962990 -------------------------------------------------------------------------------- /Assets/Tools/Common/Editor/ListDataView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools/Common/Editor/ListDataView.cs -------------------------------------------------------------------------------- /Assets/Tools/Common/Editor/ListDataView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a7826054d214d70bec7b84bb60e3c93 3 | timeCreated: 1527963578 -------------------------------------------------------------------------------- /Assets/Tools/ComponentDrawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools/ComponentDrawers.meta -------------------------------------------------------------------------------- /Assets/Tools/ComponentDrawers/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools/ComponentDrawers/Editor.meta -------------------------------------------------------------------------------- /Assets/Tools/ComponentDrawers/Editor/GridPositionTypeDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools/ComponentDrawers/Editor/GridPositionTypeDrawer.cs -------------------------------------------------------------------------------- /Assets/Tools/ComponentDrawers/Editor/GridPositionTypeDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools/ComponentDrawers/Editor/GridPositionTypeDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Tools/ComponentDrawers/Editor/GridSizeTypeDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/Tools/ComponentDrawers/Editor/GridSizeTypeDrawer.cs -------------------------------------------------------------------------------- /Assets/Tools/ComponentDrawers/Editor/GridSizeTypeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a97eea2ea414304a0dd77f99fb969a2 3 | timeCreated: 1527336229 -------------------------------------------------------------------------------- /Assets/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI.meta -------------------------------------------------------------------------------- /Assets/UI/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations.meta -------------------------------------------------------------------------------- /Assets/UI/Animations/GameOverHidden.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/GameOverHidden.anim -------------------------------------------------------------------------------- /Assets/UI/Animations/GameOverHidden.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/GameOverHidden.anim.meta -------------------------------------------------------------------------------- /Assets/UI/Animations/GameOverShow.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/GameOverShow.anim -------------------------------------------------------------------------------- /Assets/UI/Animations/GameOverShow.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/GameOverShow.anim.meta -------------------------------------------------------------------------------- /Assets/UI/Animations/GameOverView.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/GameOverView.controller -------------------------------------------------------------------------------- /Assets/UI/Animations/GameOverView.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/GameOverView.controller.meta -------------------------------------------------------------------------------- /Assets/UI/Animations/LabelShow.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/LabelShow.anim -------------------------------------------------------------------------------- /Assets/UI/Animations/LabelShow.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/LabelShow.anim.meta -------------------------------------------------------------------------------- /Assets/UI/Animations/LabelView.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/LabelView.controller -------------------------------------------------------------------------------- /Assets/UI/Animations/LabelView.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/LabelView.controller.meta -------------------------------------------------------------------------------- /Assets/UI/Animations/RestartHidden.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/RestartHidden.anim -------------------------------------------------------------------------------- /Assets/UI/Animations/RestartHidden.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/RestartHidden.anim.meta -------------------------------------------------------------------------------- /Assets/UI/Animations/RestartShow.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/RestartShow.anim -------------------------------------------------------------------------------- /Assets/UI/Animations/RestartShow.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/RestartShow.anim.meta -------------------------------------------------------------------------------- /Assets/UI/Animations/RestartView.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/RestartView.controller -------------------------------------------------------------------------------- /Assets/UI/Animations/RestartView.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/RestartView.controller.meta -------------------------------------------------------------------------------- /Assets/UI/Animations/RewardHidden.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/RewardHidden.anim -------------------------------------------------------------------------------- /Assets/UI/Animations/RewardHidden.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/RewardHidden.anim.meta -------------------------------------------------------------------------------- /Assets/UI/Animations/RewardShow.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/RewardShow.anim -------------------------------------------------------------------------------- /Assets/UI/Animations/RewardShow.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/RewardShow.anim.meta -------------------------------------------------------------------------------- /Assets/UI/Animations/RewardView.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/RewardView.controller -------------------------------------------------------------------------------- /Assets/UI/Animations/RewardView.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Animations/RewardView.controller.meta -------------------------------------------------------------------------------- /Assets/UI/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Prefabs.meta -------------------------------------------------------------------------------- /Assets/UI/Prefabs/ActionCountPanel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Prefabs/ActionCountPanel.prefab -------------------------------------------------------------------------------- /Assets/UI/Prefabs/ActionCountPanel.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Prefabs/ActionCountPanel.prefab.meta -------------------------------------------------------------------------------- /Assets/UI/Prefabs/GameOverPanel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Prefabs/GameOverPanel.prefab -------------------------------------------------------------------------------- /Assets/UI/Prefabs/GameOverPanel.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Prefabs/GameOverPanel.prefab.meta -------------------------------------------------------------------------------- /Assets/UI/Prefabs/RestartPanel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Prefabs/RestartPanel.prefab -------------------------------------------------------------------------------- /Assets/UI/Prefabs/RestartPanel.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Prefabs/RestartPanel.prefab.meta -------------------------------------------------------------------------------- /Assets/UI/Prefabs/ScorePanel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Prefabs/ScorePanel.prefab -------------------------------------------------------------------------------- /Assets/UI/Prefabs/ScorePanel.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Assets/UI/Prefabs/ScorePanel.prefab.meta -------------------------------------------------------------------------------- /Entitas.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Entitas.properties -------------------------------------------------------------------------------- /Jenny.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Jenny.properties -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Preferences.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/Preferences.properties -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffvella/EntitasGenerics/HEAD/README.md -------------------------------------------------------------------------------- /icecube.userproperties: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------