mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 08:05:07 -04:00
29 lines
676 B
C
29 lines
676 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include <vector>
|
||
|
|
||
|
#include "ZResource.h"
|
||
|
|
||
|
class ZPlayerAnimationData : public ZResource
|
||
|
{
|
||
|
public:
|
||
|
int16_t frameCount = 0;
|
||
|
std::vector<uint16_t> limbRotData;
|
||
|
|
||
|
ZPlayerAnimationData(ZFile* nParent);
|
||
|
|
||
|
void ParseXML(tinyxml2::XMLElement* reader) override;
|
||
|
void ParseRawData() override;
|
||
|
|
||
|
Declaration* DeclareVar(const std::string& prefix, const std::string& bodyStr) override;
|
||
|
|
||
|
std::string GetBodySourceCode() const override;
|
||
|
std::string GetDefaultName(const std::string& prefix) const override;
|
||
|
|
||
|
std::string GetSourceTypeName() const override;
|
||
|
ZResourceType GetResourceType() const override;
|
||
|
|
||
|
size_t GetRawDataSize() const override;
|
||
|
};
|