mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-29 15:26:04 +03:00
13 lines
236 B
C++
13 lines
236 B
C++
#ifndef GX_GLL_GL_VERTEX_SHADER_H
|
|
#define GX_GLL_GL_VERTEX_SHADER_H
|
|
|
|
#include "gx/gll/GLShader.h"
|
|
|
|
class GLVertexShader : public GLShader {
|
|
public:
|
|
// Static functions
|
|
static GLVertexShader* Create(void);
|
|
};
|
|
|
|
#endif
|