adding AnimationsSystem.cpp

This commit is contained in:
Clément Le Bihan
2021-06-01 17:26:01 +02:00
parent e298ce03eb
commit b4d783d6c2
9 changed files with 149 additions and 53 deletions
@@ -0,0 +1,25 @@
//
// Created by cbihan on 01/06/2021.
//
#pragma once
#include <System/System.hpp>
namespace BBM
{
class AnimationsSystem : public WAL::System
{
//! @inherit
void onFixedUpdate(WAL::Entity &entity) override;
//! @brief A default constructor
AnimationsSystem();
//! @brief A Controllable system is copy constructable
AnimationsSystem(const AnimationsSystem &) = default;
//! @brief A default destructor
~AnimationsSystem() override = default;
//! @brief A Controllable system is assignable.
AnimationsSystem &operator=(const AnimationsSystem &) = default;
};
}