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 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__
|