mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-11 11:33:01 +08:00
18 lines
275 B
C
18 lines
275 B
C
|
#ifndef VCOLLIDE_H
|
||
|
#define VCOLLIDE_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
class CPhysCollide;
|
||
|
|
||
|
struct vcollide_t
|
||
|
{
|
||
|
unsigned short solidCount : 15;
|
||
|
unsigned short isPacked : 1;
|
||
|
unsigned short descSize;
|
||
|
CPhysCollide** solids;
|
||
|
char* pKeyValues;
|
||
|
};
|
||
|
|
||
|
#endif
|