Initial commit.

This commit is contained in:
gothictomato
2022-07-17 14:03:47 -04:00
commit 2ad31d53e3
12 changed files with 1029 additions and 0 deletions

16
types.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#include <stdint.h>
#include <stdbool.h>
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef int8_t i8;
typedef int16_t i16;
typedef int32_t i32;
typedef int64_t i64;
typedef float f32;
typedef double f64;