Files
Bomberman/sources/Component/BumperTimer/BumperTimerComponent.cpp
2021-06-10 11:24:47 +02:00

17 lines
319 B
C++

//
// Created by Tom Augier on 2021-05-20.
//
#include "BumperTimerComponent.hpp"
namespace BBM
{
BumperTimerComponent::BumperTimerComponent(WAL::Entity &entity)
: WAL::Component(entity)
{}
WAL::Component *BumperTimerComponent::clone(WAL::Entity &entity) const
{
return new BumperTimerComponent(entity);
}
}