mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2025-01-09 16:39:27 +01:00
21 lines
362 B
C++
21 lines
362 B
C++
|
#include "common.h"
|
||
|
#include "ColBox.h"
|
||
|
|
||
|
void
|
||
|
CColBox::Set(const CVector &min, const CVector &max, uint8 surf, uint8 piece)
|
||
|
{
|
||
|
this->min = min;
|
||
|
this->max = max;
|
||
|
this->surface = surf;
|
||
|
this->piece = piece;
|
||
|
}
|
||
|
|
||
|
CColBox&
|
||
|
CColBox::operator=(const CColBox& other)
|
||
|
{
|
||
|
min = other.min;
|
||
|
max = other.max;
|
||
|
surface = other.surface;
|
||
|
piece = other.piece;
|
||
|
return *this;
|
||
|
}
|