start animator

This commit is contained in:
HENRY Benjamin
2021-06-03 11:38:15 +02:00
parent d29b0dc4ed
commit daf5919523
6 changed files with 127 additions and 2 deletions
@@ -0,0 +1,27 @@
//
// Created by hbenjamin on 03/06/2021.
//
#pragma once
#include "System/System.hpp"
namespace BBM
{
//! @brief A system to handle Health entities.
class AnimatorSystem : public WAL::System
{
public:
//! @inherit
void onFixedUpdate(WAL::Entity &entity) override;
//! @brief A default constructor
AnimatorSystem();
//! @brief A Health system is copy constructable
AnimatorSystem(const AnimatorSystem &) = default;
//! @brief A default destructor
~AnimatorSystem() override = default;
//! @brief A Health system is assignable.
AnimatorSystem &operator=(const AnimatorSystem &) = default;
};
}