mirror of
https://github.com/accelerator74/l4dtoolz.git
synced 2025-09-19 04:06:09 +08:00
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_
|