mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
25 lines
536 B
C
25 lines
536 B
C
|
#ifndef ICLIENTRENDERABLE_H
|
||
|
#define ICLIENTRENDERABLE_H
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Handle to an renderable in the client leaf system
|
||
|
//-----------------------------------------------------------------------------
|
||
|
typedef unsigned short ClientRenderHandle_t;
|
||
|
|
||
|
enum
|
||
|
{
|
||
|
INVALID_CLIENT_RENDER_HANDLE = (ClientRenderHandle_t)0xffff,
|
||
|
};
|
||
|
|
||
|
class IClientRenderable
|
||
|
{
|
||
|
void* __vftable /*VFT*/;
|
||
|
};
|
||
|
|
||
|
class IClientModelRenderable
|
||
|
{
|
||
|
void* __vftable /*VFT*/;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // ICLIENTRENDERABLE_H
|