Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/CVector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/CVector.h')
-rwxr-xr-xsrc/CVector.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/CVector.h b/src/CVector.h
new file mode 100755
index 0000000..2cb8d32
--- /dev/null
+++ b/src/CVector.h
@@ -0,0 +1,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__ */