blob: 9aac01e01cf08fde80711b77a6da74c1c5d8b441 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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;
}
|