summaryrefslogtreecommitdiffstats
path: root/src/collision/ColLine.cpp
blob: c62474493aa7c6cd89d20464a989285f90a6f436 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "common.h"
#include "ColLine.h"

void
CColLine::Set(const CVector &p0, const CVector &p1)
{
	this->p0 = p0;
	this->p1 = p1;
}