alalalallalalllala

This commit is contained in:
Zoe Roux
2021-05-27 16:37:22 +02:00
parent d69a4f8ee2
commit a26725f5a5
22 changed files with 467 additions and 133 deletions

View File

@@ -0,0 +1,17 @@
//
// 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);
}
}