yaze 0.2.0
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
sprite.h
Go to the documentation of this file.
1#ifndef YAZE_BASE_SPRITE_H_
2#define YAZE_BASE_SPRITE_H_
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include <stdint.h>
9
13struct z3_sprite {
14 const char* name;
15 uint8_t id;
16};
17typedef struct z3_sprite z3_sprite;
18
19#ifdef __cplusplus
20}
21#endif
22
23#endif // YAZE_BASE_SPRITE_H_
Primitive of a sprite.
Definition sprite.h:13
const char * name
Definition sprite.h:14
uint8_t id
Definition sprite.h:15