mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-10 18:09:16 +00:00
13 lines
271 B
C
13 lines
271 B
C
|
#pragma once
|
||
|
|
||
|
#include "SurfaceTable.h"
|
||
|
|
||
|
struct CColSphere
|
||
|
{
|
||
|
// NB: this has to be compatible with a CVuVector
|
||
|
CVector center;
|
||
|
float radius;
|
||
|
uint8 surface;
|
||
|
uint8 piece;
|
||
|
void Set(float radius, const CVector ¢er, uint8 surf = SURFACE_DEFAULT, uint8 piece = 0);
|
||
|
};
|