Just so I don't lose current progress on 2.0...
Some checks failed
Build / Build Game (push) Has been cancelled

This commit is contained in:
2026-01-10 03:07:06 -05:00
parent 1f1ac0db4d
commit 8b2edd1359
31 changed files with 4 additions and 0 deletions

13
src/util/xml_.hpp Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include <tinyxml2.h>
#include <filesystem>
#include <string>
namespace game::util::xml
{
tinyxml2::XMLError query_string_attribute(tinyxml2::XMLElement*, const char*, std::string*);
tinyxml2::XMLError query_path_attribute(tinyxml2::XMLElement*, const char*, std::filesystem::path*);
tinyxml2::XMLError query_color_attribute(tinyxml2::XMLElement*, const char*, float*);
}