mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-18 10:17:46 +00:00
9 lines
134 B
C++
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;
|
||
|
}
|