cpp-terminal-3d/src/types.h

20 lines
332 B
C
Raw Normal View History

2024-04-17 06:48:27 +00:00
// Alexander Bass
// Created 4/15/24
// Modified 4/14/24
#pragma once
#include <cstdint>
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef int8_t i8;
typedef std::int16_t i16;
typedef int32_t i32;
typedef int64_t i64;
typedef float f32;
typedef double f64;
typedef std::size_t usize;