Files
2021-06-10 15:10:14 +02:00

17 lines
329 B
C++

//
// Created by Zoe Roux on 5/24/21.
//
#include "IntroAnimationComponent.hpp"
namespace BBM
{
IntroAnimationComponent::IntroAnimationComponent(WAL::Entity &entity)
: WAL::Component(entity)
{}
WAL::Component *IntroAnimationComponent::clone(WAL::Entity &entity) const
{
return new IntroAnimationComponent(entity);
}
}