Files
Bomberman/sources/Component/Animator/AnimatorComponent.cpp
HENRY Benjamin daf5919523 start animator
2021-06-03 11:38:15 +02:00

16 lines
304 B
C++

//
// Created by hbenjamin on 03/06/2021.
//
#include "AnimatorComponent.hpp"
namespace BBM {
AnimatorComponent::AnimatorComponent(WAL::Entity &entity)
: WAL::Component(entity)
{}
WAL::Component *AnimatorComponent::clone(WAL::Entity &entity) const
{
return new AnimatorComponent(entity);
}
}