diff --git a/sources/Component/BombAnimator/BombAnimatorComponent.cpp b/sources/Component/BombAnimator/BombAnimatorComponent.cpp new file mode 100644 index 00000000..3ff7574c --- /dev/null +++ b/sources/Component/BombAnimator/BombAnimatorComponent.cpp @@ -0,0 +1,5 @@ +// +// Created by hbenjamin on 07/06/2021. +// + +#include "BombAnimatorComponent.hpp" diff --git a/sources/Component/BombAnimator/BombAnimatorComponent.hpp b/sources/Component/BombAnimator/BombAnimatorComponent.hpp new file mode 100644 index 00000000..78e8ebc6 --- /dev/null +++ b/sources/Component/BombAnimator/BombAnimatorComponent.hpp @@ -0,0 +1,21 @@ +// +// Created by hbenjamin on 07/06/2021. +// + +#pragma once +namespace BBM { + class BombAnimatorComponent { + public: + //! @inherit + WAL::Component *clone(WAL::Entity &entity) const override; + + //! @brief ctor + explicit BombAnimatorComponent(WAL::Entity &entity); + //! @brief copy ctor + BombAnimatorComponent(const BombAnimatorComponent &) = default; + //! @brief dtor + ~BombAnimatorComponent() override = default; + //! @brief assignment operator + BombAnimatorComponent &operator=(const BombAnimatorComponent &) = delete; + }; +} \ No newline at end of file diff --git a/sources/System/BombAnimator/BombAnimatorSystem.cpp b/sources/System/BombAnimator/BombAnimatorSystem.cpp new file mode 100644 index 00000000..3bae8d09 --- /dev/null +++ b/sources/System/BombAnimator/BombAnimatorSystem.cpp @@ -0,0 +1,5 @@ +// +// Created by hbenjamin on 07/06/2021. +// + +#include "BombAnimatorSystem.hpp" diff --git a/sources/System/BombAnimator/BombAnimatorSystem.hpp b/sources/System/BombAnimator/BombAnimatorSystem.hpp new file mode 100644 index 00000000..170730dc --- /dev/null +++ b/sources/System/BombAnimator/BombAnimatorSystem.hpp @@ -0,0 +1,14 @@ +// +// Created by hbenjamin on 07/06/2021. +// + +#ifndef BOMBERMAN_BOMBANIMATORSYSTEM_H +#define BOMBERMAN_BOMBANIMATORSYSTEM_H + + +class BombAnimatorSystem { + +}; + + +#endif //BOMBERMAN_BOMBANIMATORSYSTEM_H