blob: 9aac01e01cf08fde80711b77a6da74c1c5d8b441 (
plain) (
tree)
|
|
#include "common.h"
#include "ColSphere.h"
void
CColSphere::Set(float radius, const CVector ¢er, uint8 surf, uint8 piece)
{
this->radius = radius;
this->center = center;
this->surface = surf;
this->piece = piece;
}
|