cpp-terminal-3d/src/types.h
Alexander Bass f47a2df75b add horse
2024-06-05 12:13:03 -04:00

20 lines
367 B
C++

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