crocparty/sys/sys_data.h

13 lines
274 B
C

#ifndef CROCPARTY_SYS_DATA_H
#define CROCPARTY_SYS_DATA_H
#include <stdint.h>
typedef int32_t sys_i32;
typedef uint8_t sys_color;
typedef uint32_t sys_screen_color;
sys_screen_color sys_make_screen_color(uint8_t r, uint8_t g, uint8_t b);
#endif // CROCPARTY_SYS_DATA_H