Now make it even more elegant

This commit is contained in:
jordan4ibanez
2023-11-28 05:38:24 -05:00
parent afad32e8ff
commit 7ce8858957
2 changed files with 15 additions and 10 deletions

View File

@ -6,6 +6,7 @@
#include "IReadFile.h"
#include "path.h"
#include "json/json.hpp"
#include <tuple>
using json = nlohmann::json;
@ -31,7 +32,7 @@ private:
// Methods.
CSkinnedMesh* cleanUp(std::string);
bool parseJSONFile(io::IReadFile* file);
std::tuple<bool, std::string> parseJSONFile(io::IReadFile* file);
std::tuple<bool, std::string> load();
public: