mirror of
https://github.com/red031000/nitrogfx.git
synced 2025-06-18 13:15:35 -04:00
17 lines
504 B
C
17 lines
504 B
C
// Copyright (c) 2021-2023 red031000
|
|
|
|
#ifndef JSON_H
|
|
#define JSON_H
|
|
|
|
#include "options.h"
|
|
|
|
struct JsonToCellOptions *ParseNCERJson(char *path);
|
|
char *GetNCERJson(struct JsonToCellOptions *options);
|
|
struct JsonToScreenOptions *ParseNSCRJson(char *path);
|
|
struct JsonToAnimationOptions *ParseNANRJson(char *path);
|
|
void FreeNCERCell(struct JsonToCellOptions *options);
|
|
void FreeNSCRScreen(struct JsonToScreenOptions *options);
|
|
void FreeNANRAnimation(struct JsonToAnimationOptions *options);
|
|
|
|
#endif //JSON_H
|