Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/CVector.h
blob: 2cb8d32b478481a66184449edb54c45648e1d528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//--------------------------------------------------------------------------------------------------
// CVector.
// A class to represent a vector.
//--------------------------------------------------------------------------------------------------

#ifndef __CVECTOR_H__
#define __CVECTOR_H__

class CVector
{
	public:
		CVector(void);
		CVector(float aX, float aY);
		~CVector(void);
		void destroy(void);

		float x;
		float y;
};

#endif /* __CVECTOR_H__ */