1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2025-03-06 03:59:39 +00:00
re3/src/collision/ColLine.cpp

9 lines
134 B
C++
Raw Normal View History

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