SIEdit/lib/types.h
2022-06-27 09:44:50 -07:00

19 lines
352 B
C++

#ifndef TYPES_H
#define TYPES_H
#include <vector>
namespace si {
typedef unsigned char u8;
typedef char s8;
typedef unsigned short u16;
typedef short s16;
typedef unsigned int u32;
typedef int s32;
typedef float f32;
typedef double f64;
}
#endif // TYPES_H