mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-04-22 05:59:55 +08:00
14 lines
126 B
C++
14 lines
126 B
C++
#pragma once
|
|
|
|
#include <GL/glew.h>
|
|
#include <GLFW/glfw3.h>
|
|
|
|
class Shaders
|
|
{
|
|
public:
|
|
GLuint pid;
|
|
Shaders();
|
|
~Shaders();
|
|
};
|
|
|