mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2025-01-09 16:39:27 +01:00
11 lines
223 B
C++
11 lines
223 B
C++
|
#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;
|
||
|
}
|