Files
b_engine/src/ProjectManifestFile.h

19 lines
417 B
C
Raw Normal View History

2026-05-14 23:16:16 -04:00
//
// Created by slinky on 5/14/26.
//
#ifndef B_ENGINE_PROJECTMANIFESTFILE_H
#define B_ENGINE_PROJECTMANIFESTFILE_H
#include <string_view>
#include <memory>
#include "ProjectManifest.h"
class ProjectManifestFile {
public:
static std::unique_ptr<ProjectManifest> load(std::string_view _path);
static bool save(std::string_view _path, ProjectManifest* _project);
};
#endif //B_ENGINE_PROJECTMANIFESTFILE_H