Editor project

This commit is contained in:
2022-08-14 19:46:10 +00:00
parent 28c69ff62f
commit 7e9efc174a
2 changed files with 113 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#ifndef ED_PROJECT_H
#define ED_PROJECT_H
#include "config.h"
struct gameproject {
char name[127];
char path[MAXPATH];
};
void editor_init_project(struct gameproject *gp);
void editor_save_projects();
void editor_load_projects();
void editor_proj_select_gui();
void editor_import_project(char *path);
void editor_make_project(char *path);
#endif