mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-02-10 23:46:50 +00:00
16 lines
304 B
C++
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);
|
|
}
|
|
} |