24 lines
264 B
C++
24 lines
264 B
C++
#include "asciimodule.h"
|
|
|
|
Shader* ASCIIModule::shader;
|
|
|
|
ASCIIModule::ASCIIModule()
|
|
{
|
|
|
|
}
|
|
|
|
void ASCIIModule::renderGL(Camera* myCamera)
|
|
{
|
|
|
|
}
|
|
|
|
Shader* ASCIIModule::getShader()
|
|
{
|
|
return shader;
|
|
}
|
|
|
|
void ASCIIModule::setShader(Shader* myShader)
|
|
{
|
|
shader = myShader;
|
|
}
|