13 lines
182 B
C
13 lines
182 B
C
|
#pragma once
|
||
|
|
||
|
#define WIDTH 800
|
||
|
#define HEIGHT 600
|
||
|
|
||
|
class Display
|
||
|
{
|
||
|
public:
|
||
|
void show();
|
||
|
|
||
|
// TODO:
|
||
|
// setData for used stuff... current triangle, all points, ladida...
|
||
|
};
|