16 lines
188 B
C
16 lines
188 B
C
|
#ifndef __QUADER_H
|
||
|
#define __QUADER_H
|
||
|
|
||
|
#include <SDL_opengl.h>
|
||
|
#include "punkt3d.h"
|
||
|
|
||
|
|
||
|
class Quader {
|
||
|
public:
|
||
|
Punkt3D a, b, c, d, e, f, g, h;
|
||
|
void clean();
|
||
|
void render();
|
||
|
};
|
||
|
|
||
|
#endif
|