Files
grafikaKBT/szescian.h
2024-11-28 18:17:49 +01:00

14 lines
217 B
C++

#pragma once
#include <windows.h>
#include <gl\gl.h>
#include <gl\glu.h>
class szescian
{
private:
float c_x{0};
float c_y{0};
float c_z{0};
public:
void create(float x, float y, float z, float KRAWEDZ);
};