mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-20 21:35:12 +00:00
17 lines
319 B
C++
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);
|
|
}
|
|
} |