add yaze_project primitive
This commit is contained in:
11
src/yaze.h
11
src/yaze.h
@@ -13,6 +13,7 @@ extern "C" {
|
|||||||
#include "base/overworld.h"
|
#include "base/overworld.h"
|
||||||
|
|
||||||
typedef struct yaze_flags yaze_flags;
|
typedef struct yaze_flags yaze_flags;
|
||||||
|
typedef struct yaze_project yaze_project;
|
||||||
typedef struct z3_rom z3_rom;
|
typedef struct z3_rom z3_rom;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -38,6 +39,16 @@ void yaze_init(yaze_flags*);
|
|||||||
*/
|
*/
|
||||||
void yaze_cleanup(yaze_flags*);
|
void yaze_cleanup(yaze_flags*);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Primitive of a Yaze project.
|
||||||
|
*/
|
||||||
|
struct yaze_project {
|
||||||
|
const char* filename;
|
||||||
|
|
||||||
|
z3_rom* rom;
|
||||||
|
z3_overworld* overworld;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Primitive of a Zelda3 ROM.
|
* @brief Primitive of a Zelda3 ROM.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user