1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 15:02:34 +02:00
openrw/framework/gtfwpre.h
2013-06-30 00:05:04 +01:00

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