mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
* Dedicated SDK now supports ASLR enabled executables. * Complete removal of CEngineClient on the dedicated server. * Complete removal of gHLClient and g_pHLClient on the dedicated server. * Performance improvements for the dedicated server frame loop. * ConVar 'CVCallback_t' structure rebuild. * Reduced overhead throughout SDK.
20 lines
394 B
C++
20 lines
394 B
C++
#ifndef SDKDEFS_H
|
|
#define SDKDEFS_H
|
|
|
|
// Common type declarations to reduce code verbosity.
|
|
using std::pair;
|
|
using std::regex;
|
|
using std::string;
|
|
using std::vector;
|
|
using std::fstream;
|
|
using std::ifstream;
|
|
using std::ofstream;
|
|
using std::stringstream;
|
|
using std::ostringstream;
|
|
using std::unordered_map;
|
|
|
|
namespace fs = std::filesystem;
|
|
typedef const unsigned char* rsig_t;
|
|
|
|
#endif // SDKDEFS_H
|