#pragma once #include "Utils/IO/DataStream.hpp" #include #include #include #include class DataArchive { public: static std::span GetMagicNumbers(); // TODO more complete impl static std::optional LoadFile(const std::filesystem::path& path); static std::optional SaveFile(const std::filesystem::path& path); };