Move types.h to misc

This commit is contained in:
madmaurice 2023-08-29 23:16:09 +02:00
parent eb0e591b25
commit 7425663f16
3 changed files with 2 additions and 2 deletions

9
misc/types.h Normal file
View file

@ -0,0 +1,9 @@
#pragma once
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef signed char s8;
typedef signed short s16;
typedef signed int s32;