texturedquad.h
来自「This code was developed by my techer. :D」· C头文件 代码 · 共 20 行
H
20 行
#ifndef COMPGRAF_TEXTUREDQUAD_H
#define COMPGRAF_TEXTUREDQUAD_H
#include "interfaces/rendereable.h"
#include "SDL.h"
#include "SDL_opengl.h"
class TexturedQuad : public Rendereable
{
public:
TexturedQuad(float x, float y, float z, float rotx, float roty, float rotz);
~TexturedQuad();
void draw();
private:
GLuint textureId;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?