2025-08-03 10:07:35 -04:00
|
|
|
#ifndef _REGISTRY_H_
|
|
|
|
|
#define _REGISTRY_H_
|
|
|
|
|
|
|
|
|
|
#include "error.h"
|
|
|
|
|
|
|
|
|
|
extern SDL_PropertiesID REGISTRY_ACTOR;
|
|
|
|
|
extern SDL_PropertiesID REGISTRY_SPRITE;
|
|
|
|
|
extern SDL_PropertiesID REGISTRY_SPRITESHEET;
|
|
|
|
|
extern SDL_PropertiesID REGISTRY_CHARACTER;
|
|
|
|
|
extern SDL_PropertiesID REGISTRY_ACTOR_STATE_STRINGS;
|
|
|
|
|
|
2026-05-03 23:57:55 -04:00
|
|
|
akerr_ErrorContext AKERR_NOIGNORE *registry_init();
|
|
|
|
|
akerr_ErrorContext AKERR_NOIGNORE *registry_init_actor();
|
|
|
|
|
akerr_ErrorContext AKERR_NOIGNORE *registry_init_sprite();
|
|
|
|
|
akerr_ErrorContext AKERR_NOIGNORE *registry_init_spritesheet();
|
|
|
|
|
akerr_ErrorContext AKERR_NOIGNORE *registry_init_character();
|
|
|
|
|
akerr_ErrorContext AKERR_NOIGNORE *registry_init_actor_state_strings();
|
2025-08-03 10:07:35 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //_REGISTRY_H_
|