mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-26 11:04:15 +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;
|
|
} |