mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-07 10:03:29 +08:00
19 lines
271 B
C++
19 lines
271 B
C++
#ifndef CLIENT_RENDER_HANDLE_H
|
|
#define CLIENT_RENDER_HANDLE_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
class IClientRenderable;
|
|
|
|
|
|
typedef unsigned short ClientRenderHandle_t;
|
|
|
|
enum
|
|
{
|
|
INVALID_CLIENT_RENDER_HANDLE = (ClientRenderHandle_t)0xffff,
|
|
};
|
|
|
|
|
|
#endif |