Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
IntTypes.hpp
1#pragma once
2
3#include <stdint.h>
4
5namespace Grindstone {
6 using Int8 = int8_t;
7 using Int16 = int16_t;
8 using Int32 = int32_t;
9 using Int64 = int64_t;
10
11 using Uint8 = uint8_t;
12 using Uint16 = uint16_t;
13 using Uint32 = uint32_t;
14 using Uint64 = uint64_t;
15
16 using Byte = uint8_t;
17}