mirror of https://github.com/axmolengine/axmol.git
12 lines
165 B
C++
12 lines
165 B
C++
|
#include "Program.h"
|
||
|
|
||
|
CC_BACKEND_BEGIN
|
||
|
|
||
|
Program::Program(const std::string& vs, const std::string& fs)
|
||
|
: _vertexShader(vs)
|
||
|
, _fragmentShader(fs)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
CC_BACKEND_END
|