mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
21 lines
414 B
C++
21 lines
414 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::wstring;
|
|
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
|