Add Debian 12 C++23 toolchain, plumb args

This commit is contained in:
TennesseeTrash 2025-05-25 17:19:34 +02:00
parent aea51d9e77
commit e1af823502
4 changed files with 41 additions and 2 deletions

View file

@ -1,9 +1,20 @@
#include "Kanimaji/Kanimaji.hpp"
#include <ctre.hpp>
#include <pugixml.hpp>
namespace Kanimaji
{
bool Animate(const std::string& source, const std::string& destination)
{
pugi::xml_document doc;
pugi::xml_parse_result res = doc.load_file(source.c_str());
if (!res) {
return false;
}
return false;
}
}