mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-02-15 01:40:40 +00:00
17 lines
320 B
C++
17 lines
320 B
C++
//
|
|
// Created by hbenjamin on 09/06/2021.
|
|
//
|
|
|
|
#include "PlayerBonusComponent.hpp"
|
|
|
|
namespace BBM {
|
|
PlayerBonusComponent::PlayerBonusComponent(WAL::Entity &entity)
|
|
: WAL::Component(entity)
|
|
{}
|
|
|
|
WAL::Component *PlayerBonusComponent::clone(WAL::Entity &entity) const
|
|
{
|
|
return new PlayerBonusComponent(entity);
|
|
}
|
|
}
|