more python cleanup

This commit is contained in:
scawful
2024-08-20 22:47:12 -04:00
parent b98f0416bb
commit bf1c3a87fa
3 changed files with 3 additions and 147 deletions

View File

@@ -7,25 +7,12 @@ extern "C" {
#include <stdint.h>
/**
* @brief Sprite action.
*/
struct z3_sprite_action {
const char* name; /**< Name of the action. */
uint8_t id; /**< ID of the action. */
const char** instructions; /**< Pointer to the instructions of the action. */
};
typedef struct z3_sprite_action z3_sprite_action;
/**
* @brief Primitive of a sprite.
*/
struct z3_sprite {
const char* name; /**< Name of the sprite. */
uint8_t id; /**< ID of the sprite. */
z3_sprite_action* actions; /**< Pointer to the actions of the sprite. */
};
typedef struct z3_sprite z3_sprite;