This commit is contained in:
2026-03-04 07:05:37 +02:00
parent 9f188b2203
commit 04e70a9e93
7 changed files with 248 additions and 0 deletions

16
test_allocationsECS.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include <Tourmaline/Containers/DualkeyMap.hpp>
#include <Tourmaline/Systems/ECS.hpp>
#include <Tourmaline/Systems/Random.hpp>
#include <Tourmaline/Types.hpp>
using namespace Tourmaline::Containers;
using namespace Tourmaline::Type;
using namespace Tourmaline::Systems;
int main() {
ECS::World gameWorld;
for (int x = 0; x < 100000; x++) {
gameWorld.CreateEntity();
}
return 0;
}