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