mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-02-17 18:54:10 +00:00
18 lines
319 B
C++
18 lines
319 B
C++
//
|
|
// Created by cbihan on 16/06/2021.
|
|
//
|
|
|
|
#include "WhiteShaderComponent.hpp"
|
|
|
|
namespace BBM
|
|
{
|
|
WhiteShaderComponent::WhiteShaderComponent(WAL::Entity &entity) :
|
|
Component(entity)
|
|
{
|
|
}
|
|
|
|
WAL::Component *WhiteShaderComponent::clone(WAL::Entity &entity) const
|
|
{
|
|
return new WhiteShaderComponent(this->_entity);
|
|
}
|
|
} |