stuff to get shooty to work, might be temp
This commit is contained in:
parent
d4731d3961
commit
12a28fea88
8 changed files with 102 additions and 3 deletions
19
include/arc/graphics/color.h
Normal file
19
include/arc/graphics/color.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#ifndef ARC_GRAPHICS_COLOR_H_
|
||||
#define ARC_GRAPHICS_COLOR_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
typedef struct ARC_Color {
|
||||
uint8_t r, g, b, a;
|
||||
} ARC_Color;
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // !ARC_GRAPHICS_COLOR_H_
|
||||
Loading…
Add table
Add a link
Reference in a new issue