metaforce/Runtime/Character/CInt32POINode.hpp

27 lines
607 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CINT32POINODE_HPP__
#define __URDE_CINT32POINODE_HPP__
2016-04-11 07:10:28 +00:00
#include "CPOINode.hpp"
namespace urde
{
2016-04-12 06:15:32 +00:00
class IAnimSourceInfo;
2016-04-11 07:10:28 +00:00
class CInt32POINode : public CPOINode
{
2016-04-12 06:15:32 +00:00
s32 x38_val;
2016-04-28 04:52:41 +00:00
std::string x3c_locatorName;
2016-04-11 07:10:28 +00:00
public:
CInt32POINode();
2016-04-11 07:10:28 +00:00
CInt32POINode(CInputStream& in);
2016-04-12 06:15:32 +00:00
s32 GetValue() const {return x38_val;}
2017-11-13 06:19:18 +00:00
std::string_view GetLocatorName() const {return x3c_locatorName;}
2016-04-12 06:15:32 +00:00
static CInt32POINode CopyNodeMinusStartTime(const CInt32POINode& node,
const CCharAnimTime& startTime);
2016-04-11 07:10:28 +00:00
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CINT32POINODE_HPP__