mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-21 13:55:10 +00:00
17 lines
319 B
C++
17 lines
319 B
C++
//
|
|
// Created by Zoe Roux on 5/24/21.
|
|
//
|
|
|
|
#include "ControllableComponent.hpp"
|
|
|
|
namespace BBM
|
|
{
|
|
ControllableComponent::ControllableComponent(WAL::Entity &entity)
|
|
: WAL::Component(entity)
|
|
{}
|
|
|
|
WAL::Component *ControllableComponent::clone(WAL::Entity &entity) const
|
|
{
|
|
return new ControllableComponent(entity);
|
|
}
|
|
} |