You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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;
|
|
} |