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