summaryrefslogtreecommitdiff
path: root/Client/Source/Graphics/PolyLine.h
blob: 816d18e68f02a9aa109d0e12fb4184f872c23c6f (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.hpp"

class PolyLine
{
public:
	PolyLine();
	~PolyLine();
	
	void Draw();

private: 

};

#endif