mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-11 03:32:10 +08:00
17 lines
316 B
C
17 lines
316 B
C
|
#ifndef SHARED_CLASSNAMES_H
|
||
|
#define SHARED_CLASSNAMES_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#if defined( CLIENT_DLL )
|
||
|
|
||
|
#define CBaseEntity C_BaseEntity
|
||
|
#define CBaseCombatCharacter C_BaseCombatCharacter
|
||
|
#define CBaseAnimating C_BaseAnimating
|
||
|
#define CBasePlayer C_BasePlayer
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif
|