28 lines
765 B
C++
28 lines
765 B
C++
/********************\
|
|
| Copyright 2024, |
|
|
| Ulysse Cura |
|
|
\********************/
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
// //
|
|
// Inclure facilement tout les definition des composant. //
|
|
// //
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
#ifndef COMPONENTS_HPP
|
|
#define COMPONENTS_HPP
|
|
|
|
#include "AnimationSystem.hpp"
|
|
#include "Door.hpp"
|
|
#include "ECS.hpp"
|
|
#include "HitboxComponent.hpp"
|
|
#include "InteractableComponent.hpp"
|
|
#include "InventoryComponent.hpp"
|
|
#include "Lever.hpp"
|
|
#include "Lock.hpp"
|
|
#include "PlayerSystem.hpp"
|
|
#include "SpriteComponent.hpp"
|
|
#include "TransformComponent.hpp"
|
|
|
|
#endif
|