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