blob: 1850e476097e62646e4ad3196ac0a5660eacb792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef POLY_LINE_H
#define POLY_LINE_H
#include "../Math/Vector3.h"
class PolyLine
{
public:
PolyLine();
~PolyLine();
void Draw();
private:
};
#endif
|