This commit is contained in:
HENRY Benjamin
2021-06-07 14:35:19 +02:00
parent 855a0c5bee
commit 78d026114e
4 changed files with 45 additions and 0 deletions
@@ -0,0 +1,5 @@
//
// Created by hbenjamin on 07/06/2021.
//
#include "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;
};
}
@@ -0,0 +1,5 @@
//
// Created by hbenjamin on 07/06/2021.
//
#include "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