mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-05-22 22:45:48 +00:00
PlayerBonus system & component made (containing timer)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
//
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user