17 lines
394 B
C++
17 lines
394 B
C++
#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;
|
|
}
|