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