mirror of
https://github.com/accelerator74/l4dtoolz.git
synced 2024-12-23 06:57:28 +08:00
8dbe52e6f3
Signed-off-by: Ivailo Spasov <ivailosp@abv.bg>
19 lines
314 B
C
19 lines
314 B
C
#ifndef _INCLUDE_GAME_SIGNATURE_
|
|
#define _INCLUDE_GAME_SIGNATURE_
|
|
|
|
#ifdef WIN32
|
|
#ifdef L4D1
|
|
#include "l4d1_signature_win32.h"
|
|
#else
|
|
#include "l4d2_signature_win32.h"
|
|
#endif
|
|
#else
|
|
#ifdef L4D1
|
|
#include "l4d1_signature_linux.h"
|
|
#else
|
|
#include "l4d2_signature_linux.h"
|
|
#endif
|
|
#endif
|
|
|
|
#endif //_INCLUDE_GAME_SIGNATURE_
|