mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 19:32:49 +01:00
17 lines
274 B
C++
17 lines
274 B
C++
#ifndef _GTFWPRE_H_
|
|
#define _GTFWPRE_H_
|
|
|
|
// Useful includes
|
|
#include <cstdint>
|
|
|
|
// Useful global imports
|
|
using std::int8_t;
|
|
using std::int16_t;
|
|
using std::int32_t;
|
|
using std::int64_t;
|
|
using std::uint8_t;
|
|
using std::uint16_t;
|
|
using std::uint32_t;
|
|
using std::uint64_t;
|
|
|
|
#endif |