metaforce/Runtime/Character/CSkinRules.hpp

24 lines
453 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CSKINRULES_HPP__
#define __URDE_CSKINRULES_HPP__
2016-04-09 23:19:17 +00:00
#include "RetroTypes.hpp"
#include "CSkinBank.hpp"
#include "CFactoryMgr.hpp"
2016-04-09 23:19:17 +00:00
namespace urde
{
class CSkinRules
{
std::vector<CSkinBank> x0_skinBanks;
2016-04-09 23:19:17 +00:00
public:
CSkinRules(CInputStream& in);
void BuildAccumulatedTransforms();
};
CFactoryFnReturn FSkinRulesFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& params);
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CSKINRULES_HPP__