1
0
mirror of https://github.com/td512/re3.git synced 2026-01-25 12:35:38 +00:00
td512.re3/src/collision/ColLine.cpp

9 lines
134 B
C++

#include "common.h"
#include "ColLine.h"
void
CColLine::Set(const CVector &p0, const CVector &p1)
{
this->p0 = p0;
this->p1 = p1;
}