2025-05-25 00:42:58 +02:00
|
|
|
#include "Kanimaji/Kanimaji.hpp"
|
|
|
|
|
2025-05-25 17:19:34 +02:00
|
|
|
#include <ctre.hpp>
|
|
|
|
#include <pugixml.hpp>
|
|
|
|
|
2025-05-25 00:42:58 +02:00
|
|
|
namespace Kanimaji
|
|
|
|
{
|
|
|
|
bool Animate(const std::string& source, const std::string& destination)
|
|
|
|
{
|
2025-05-25 17:19:34 +02:00
|
|
|
pugi::xml_document doc;
|
|
|
|
pugi::xml_parse_result res = doc.load_file(source.c_str());
|
|
|
|
if (!res) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-05-25 00:42:58 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|