Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/CVector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/CVector.cpp')
-rwxr-xr-xsrc/CVector.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/CVector.cpp b/src/CVector.cpp
new file mode 100755
index 0000000..412cf93
--- /dev/null
+++ b/src/CVector.cpp
@@ -0,0 +1,20 @@
+#include "CVector.h"
+
+CVector::CVector(void)
+{
+}
+
+CVector::CVector(float aX, float aY)
+{
+ x = aX;
+ y = aY;
+}
+
+CVector::~CVector(void)
+{
+ destroy();
+}
+
+void CVector::destroy(void)
+{
+}