20 lines
426 B
C++
20 lines
426 B
C++
#pragma once
|
|
|
|
#include "animation.h"
|
|
|
|
namespace anm2ed::anm2
|
|
{
|
|
constexpr auto MERGED_STRING = "(Merged)";
|
|
|
|
struct Animations
|
|
{
|
|
std::string defaultAnimation{};
|
|
std::vector<Animation> items{};
|
|
|
|
Animations() = default;
|
|
Animations(tinyxml2::XMLElement*);
|
|
tinyxml2::XMLElement* to_element(tinyxml2::XMLDocument&);
|
|
void serialize(tinyxml2::XMLDocument&, tinyxml2::XMLElement*);
|
|
int length();
|
|
};
|
|
} |