metaforce/Runtime/Character/CBoolPOINode.hpp

30 lines
876 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CBOOLPOINODE_HPP__
#define __URDE_CBOOLPOINODE_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 CBoolPOINode : public CPOINode
{
bool x38_val = false;
public:
CBoolPOINode();
CBoolPOINode(CInputStream& in);
2016-04-11 07:47:21 +00:00
bool GetValue() const {return x38_val;}
2016-04-12 06:15:32 +00:00
static u32 _getPOIList(const CCharAnimTime& time,
CBoolPOINode* listOut,
u32 capacity, u32 iterator, u32 unk1,
const std::vector<CBoolPOINode>& stream,
const CCharAnimTime& curTime,
const IAnimSourceInfo& animInfo, u32 passedCount);
static CBoolPOINode CopyNodeMinusStartTime(const CBoolPOINode& node,
const CCharAnimTime& startTime);
2016-04-11 07:10:28 +00:00
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CBOOLPOINODE_HPP__