Common int types without _t, and byte type

It's my code I do what I want
This commit is contained in:
Alpyne 2020-10-30 19:15:23 -07:00
parent 3f76d50d67
commit 1ec9781ec1
1 changed files with 15 additions and 0 deletions

View File

@ -1,5 +1,20 @@
#pragma once
typedef unsigned int uint;
#include <cstdint>
typedef int8_t int8;
typedef int16_t int16;
typedef int32_t int32;
typedef int64_t int64;
typedef uint8_t uint8;
typedef uint16_t uint16;
typedef uint32_t uint32;
typedef uint64_t uint64;
typedef uint8 byte;
#include "util/Math.h"
#include "logging/Logger.h"