├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── EntityComponentSystem.sln ├── EntityComponentSystem ├── ClassDiagram.cd ├── EntityComponentSystem.vcxproj ├── EntityComponentSystem.vcxproj.filters ├── include │ └── ECS │ │ ├── API.h │ │ ├── Component.h │ │ ├── ComponentManager.h │ │ ├── ECS.h │ │ ├── Engine.h │ │ ├── Entity.h │ │ ├── EntityManager.h │ │ ├── Event │ │ ├── Event.h │ │ ├── EventDelegate.h │ │ ├── EventDispatcher.h │ │ ├── EventHandler.h │ │ ├── IEvent.h │ │ ├── IEventDispatcher.h │ │ └── IEventListener.h │ │ ├── IComponent.h │ │ ├── IEntity.h │ │ ├── ISystem.h │ │ ├── Log │ │ ├── Logger.h │ │ ├── LoggerMacro.h │ │ └── LoggerManager.h │ │ ├── Memory │ │ ├── Allocator │ │ │ ├── IAllocator.h │ │ │ ├── LinearAllocator.h │ │ │ ├── PoolAllocator.h │ │ │ └── StackAllocator.h │ │ ├── ECSMM.h │ │ └── MemoryChunkAllocator.h │ │ ├── Platform.h │ │ ├── System.h │ │ ├── SystemManager.h │ │ └── util │ │ ├── FamilyTypeID.h │ │ ├── Handle.h │ │ └── Timer.h └── src │ ├── API.cpp │ ├── ComponentManager.cpp │ ├── Engine.cpp │ ├── EntityManager.cpp │ ├── Event │ ├── EventHandler.cpp │ ├── IEvent.cpp │ └── IEventListener.cpp │ ├── IComponent.cpp │ ├── IEntity.cpp │ ├── ISystem.cpp │ ├── Log │ ├── Logger.cpp │ └── LoggerManager.cpp │ ├── Memory │ ├── Allocator │ │ ├── IAllocator.cpp │ │ ├── LinearAllocator.cpp │ │ ├── PoolAllocator.cpp │ │ └── StackAllocator.cpp │ └── ECSMM.cpp │ ├── SystemManager.cpp │ └── util │ ├── FamilyTypeID.cpp │ └── Timer.cpp ├── ThirdParty └── log4cplus-1.2.1-rc2 │ └── include │ └── log4cplus │ ├── appender.h │ ├── asyncappender.h │ ├── boost │ └── deviceappender.hxx │ ├── clfsappender.h │ ├── clogger.h │ ├── config.h.cmake.in │ ├── config.h.in │ ├── config.hxx │ ├── config │ ├── defines.hxx.in │ ├── macosx.h │ ├── win32.h │ └── windowsh-inc.h │ ├── configurator.h │ ├── consoleappender.h │ ├── fileappender.h │ ├── fstreams.h │ ├── helpers │ ├── appenderattachableimpl.h │ ├── connectorthread.h │ ├── fileinfo.h │ ├── lockfile.h │ ├── loglog.h │ ├── logloguser.h │ ├── pointer.h │ ├── property.h │ ├── queue.h │ ├── sleep.h │ ├── snprintf.h │ ├── socket.h │ ├── socketbuffer.h │ ├── stringhelper.h │ ├── thread-config.h │ └── timehelper.h │ ├── hierarchy.h │ ├── hierarchylocker.h │ ├── internal │ ├── cygwin-win32.h │ ├── env.h │ ├── internal.h │ └── socket.h │ ├── layout.h │ ├── log4judpappender.h │ ├── logger.h │ ├── loggingmacros.h │ ├── loglevel.h │ ├── mdc.h │ ├── msttsappender.h │ ├── ndc.h │ ├── nteventlogappender.h │ ├── nullappender.h │ ├── qt4debugappender.h │ ├── qt5debugappender.h │ ├── socketappender.h │ ├── spi │ ├── appenderattachable.h │ ├── factory.h │ ├── filter.h │ ├── loggerfactory.h │ ├── loggerimpl.h │ ├── loggingevent.h │ ├── objectregistry.h │ └── rootlogger.h │ ├── streams.h │ ├── syslogappender.h │ ├── tchar.h │ ├── thread │ ├── impl │ │ ├── syncprims-cxx11.h │ │ ├── syncprims-impl.h │ │ ├── syncprims-pmsm.h │ │ ├── syncprims-pthreads.h │ │ ├── syncprims-win32.h │ │ ├── threads-impl.h │ │ └── tls.h │ ├── syncprims-pub-impl.h │ ├── syncprims.h │ └── threads.h │ ├── tracelogger.h │ ├── tstring.h │ ├── version.h │ ├── win32consoleappender.h │ └── win32debugappender.h └── testEntityComponentSystem ├── HandleTest.cpp ├── TestDynVsCRTPCallSpeed.cpp ├── Timer.cpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── testEntityComponentSystem.vcxproj └── testEntityComponentSystem.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /EntityComponentSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem.sln -------------------------------------------------------------------------------- /EntityComponentSystem/ClassDiagram.cd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EntityComponentSystem/EntityComponentSystem.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/EntityComponentSystem.vcxproj -------------------------------------------------------------------------------- /EntityComponentSystem/EntityComponentSystem.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/EntityComponentSystem.vcxproj.filters -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/API.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Component.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/ComponentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/ComponentManager.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/ECS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/ECS.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Engine.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Entity.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/EntityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/EntityManager.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Event/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Event/Event.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Event/EventDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Event/EventDelegate.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Event/EventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Event/EventDispatcher.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Event/EventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Event/EventHandler.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Event/IEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Event/IEvent.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Event/IEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Event/IEventDispatcher.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Event/IEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Event/IEventListener.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/IComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/IComponent.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/IEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/IEntity.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/ISystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/ISystem.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Log/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Log/Logger.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Log/LoggerMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Log/LoggerMacro.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Log/LoggerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Log/LoggerManager.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Memory/Allocator/IAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Memory/Allocator/IAllocator.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Memory/Allocator/LinearAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Memory/Allocator/LinearAllocator.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Memory/Allocator/PoolAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Memory/Allocator/PoolAllocator.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Memory/Allocator/StackAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Memory/Allocator/StackAllocator.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Memory/ECSMM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Memory/ECSMM.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Memory/MemoryChunkAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Memory/MemoryChunkAllocator.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/Platform.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/System.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/SystemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/SystemManager.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/util/FamilyTypeID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/util/FamilyTypeID.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/util/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/util/Handle.h -------------------------------------------------------------------------------- /EntityComponentSystem/include/ECS/util/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/include/ECS/util/Timer.h -------------------------------------------------------------------------------- /EntityComponentSystem/src/API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/API.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/ComponentManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/ComponentManager.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/Engine.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/EntityManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/EntityManager.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/Event/EventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/Event/EventHandler.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/Event/IEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/Event/IEvent.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/Event/IEventListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/Event/IEventListener.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/IComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/IComponent.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/IEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/IEntity.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/ISystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/ISystem.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/Log/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/Log/Logger.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/Log/LoggerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/Log/LoggerManager.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/Memory/Allocator/IAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/Memory/Allocator/IAllocator.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/Memory/Allocator/LinearAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/Memory/Allocator/LinearAllocator.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/Memory/Allocator/PoolAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/Memory/Allocator/PoolAllocator.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/Memory/Allocator/StackAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/Memory/Allocator/StackAllocator.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/Memory/ECSMM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/Memory/ECSMM.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/SystemManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/SystemManager.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/util/FamilyTypeID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/util/FamilyTypeID.cpp -------------------------------------------------------------------------------- /EntityComponentSystem/src/util/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/EntityComponentSystem/src/util/Timer.cpp -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/appender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/appender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/asyncappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/asyncappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/boost/deviceappender.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/boost/deviceappender.hxx -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/clfsappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/clfsappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/clogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/clogger.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config.h.cmake.in -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config.h.in -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config.hxx -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config/defines.hxx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config/defines.hxx.in -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config/macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config/macosx.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config/win32.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config/windowsh-inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/config/windowsh-inc.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/configurator.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/consoleappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/consoleappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/fileappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/fileappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/fstreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/fstreams.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/appenderattachableimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/appenderattachableimpl.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/connectorthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/connectorthread.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/fileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/fileinfo.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/lockfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/lockfile.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/loglog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/loglog.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/logloguser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/logloguser.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/pointer.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/property.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/queue.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/sleep.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/snprintf.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/socket.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/socketbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/socketbuffer.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/stringhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/stringhelper.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/thread-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/thread-config.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/timehelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/helpers/timehelper.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/hierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/hierarchy.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/hierarchylocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/hierarchylocker.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/internal/cygwin-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/internal/cygwin-win32.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/internal/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/internal/env.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/internal/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/internal/internal.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/internal/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/internal/socket.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/layout.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/log4judpappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/log4judpappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/logger.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/loggingmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/loggingmacros.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/loglevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/loglevel.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/mdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/mdc.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/msttsappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/msttsappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/ndc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/ndc.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/nteventlogappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/nteventlogappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/nullappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/nullappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/qt4debugappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/qt4debugappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/qt5debugappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/qt5debugappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/socketappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/socketappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/appenderattachable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/appenderattachable.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/factory.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/filter.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/loggerfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/loggerfactory.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/loggerimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/loggerimpl.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/loggingevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/loggingevent.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/objectregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/objectregistry.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/rootlogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/spi/rootlogger.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/streams.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/syslogappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/syslogappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/tchar.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/syncprims-cxx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/syncprims-cxx11.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/syncprims-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/syncprims-impl.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/syncprims-pmsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/syncprims-pmsm.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/syncprims-pthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/syncprims-pthreads.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/syncprims-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/syncprims-win32.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/threads-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/threads-impl.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/impl/tls.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/syncprims-pub-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/syncprims-pub-impl.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/syncprims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/syncprims.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/thread/threads.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/tracelogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/tracelogger.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/tstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/tstring.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/version.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/win32consoleappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/win32consoleappender.h -------------------------------------------------------------------------------- /ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/win32debugappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/ThirdParty/log4cplus-1.2.1-rc2/include/log4cplus/win32debugappender.h -------------------------------------------------------------------------------- /testEntityComponentSystem/HandleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/testEntityComponentSystem/HandleTest.cpp -------------------------------------------------------------------------------- /testEntityComponentSystem/TestDynVsCRTPCallSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/testEntityComponentSystem/TestDynVsCRTPCallSpeed.cpp -------------------------------------------------------------------------------- /testEntityComponentSystem/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/testEntityComponentSystem/Timer.cpp -------------------------------------------------------------------------------- /testEntityComponentSystem/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/testEntityComponentSystem/stdafx.cpp -------------------------------------------------------------------------------- /testEntityComponentSystem/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/testEntityComponentSystem/stdafx.h -------------------------------------------------------------------------------- /testEntityComponentSystem/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/testEntityComponentSystem/targetver.h -------------------------------------------------------------------------------- /testEntityComponentSystem/testEntityComponentSystem.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/testEntityComponentSystem/testEntityComponentSystem.vcxproj -------------------------------------------------------------------------------- /testEntityComponentSystem/testEntityComponentSystem.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobias-stein/EntityComponentSystem/HEAD/testEntityComponentSystem/testEntityComponentSystem.vcxproj.filters --------------------------------------------------------------------------------