Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/CVector.cpp
blob: 412cf93594b74ae51962e37cfda62f1809c70af0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)
{
}