Start implementing the SVG animation library (and tool)

This commit is contained in:
TennesseeTrash 2025-05-30 19:28:42 +02:00
parent e1af823502
commit 4e87a67296
5 changed files with 298 additions and 11 deletions

View file

@ -6,6 +6,11 @@
namespace Kanimaji
{
bool Animate(const std::string& source, const std::string& destination);
constexpr bool Animate(const std::string& filename)
{
return Animate(filename, filename);
}
}
#endif // KANIMAJI_KANIMAJI_HPP