mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-05-26 15:58:12 +00:00
17 lines
329 B
C++
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);
|
|
}
|
|
} |