mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-07-10 07:07:17 -04:00
13 lines
434 B
C++
13 lines
434 B
C++
#include <libultraship/libultraship.h>
|
|
#include "Course.h"
|
|
|
|
namespace Editor {
|
|
void SaveLevel();
|
|
void LoadLevel(std::string sceneFile);
|
|
void Load_AddStaticMeshActor(const nlohmann::json& actorJson);
|
|
void SetSceneFile(std::string sceneFile);
|
|
|
|
extern std::shared_ptr<Ship::Archive> CurrentArchive; // This is used to retrieve and write the scene data file
|
|
extern std::string SceneFile;
|
|
}
|