summaryrefslogtreecommitdiffstats
path: root/src/collision/ColSphere.cpp
blob: 9aac01e01cf08fde80711b77a6da74c1c5d8b441 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include "common.h"
#include "ColSphere.h"

void
CColSphere::Set(float radius, const CVector &center, uint8 surf, uint8 piece)
{
	this->radius = radius;
	this->center = center;
	this->surface = surf;
	this->piece = piece;
}