NasNas
An intuitive and beginner friendly 2D game framework for C++
Ecs.hpp
1 // Created by Modar Nasser on 03/07/2021.
2 
3 #pragma once
4 
5 #include <NasNas/ecs/components/ColliderComponent.hpp>
6 #include <NasNas/ecs/components/InputsComponent.hpp>
7 #include <NasNas/ecs/components/PhysicsComponent.hpp>
8 #include <NasNas/ecs/components/ShapeComponent.hpp>
9 #include <NasNas/ecs/components/SpriteComponent.hpp>
10 #include <NasNas/ecs/components/TransformComponent.hpp>
11 
12 #include <NasNas/ecs/DefaultSystems.hpp>
13 #include <NasNas/ecs/EntityObject.hpp>
14 #include <NasNas/ecs/Registry.hpp>
15 #include <NasNas/ecs/System.hpp>