Stardew Engine
Loading...
Searching...
No Matches
IntTypes.h
Go to the documentation of this file.
1#ifndef INT_TYPES_H
2#define INT_TYPES_H
3
4#include <stdint.h>
5
6typedef uint8_t u8;
7typedef int8_t i8;
8
9typedef uint16_t u16;
10typedef int16_t i16;
11
12typedef uint32_t u32;
13typedef int32_t i32;
14
15typedef uint64_t u64;
16typedef int64_t i64;
17
18typedef u16 TileIndex;
20
21#endif
uint64_t u64
Definition IntTypes.h:15
int32_t i32
Definition IntTypes.h:13
u16 TileIndex
Definition IntTypes.h:18
int64_t i64
Definition IntTypes.h:16
uint8_t u8
Definition IntTypes.h:6
u32 VertIndexT
Definition IntTypes.h:19
uint16_t u16
Definition IntTypes.h:9
int16_t i16
Definition IntTypes.h:10
int8_t i8
Definition IntTypes.h:7
uint32_t u32
Definition IntTypes.h:12