mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-05 15:13:27 +00:00
20 lines
283 B
C++
20 lines
283 B
C++
#ifndef __PSHAG_CSKINRULES_HPP__
|
|
#define __PSHAG_CSKINRULES_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
#include "CVirtualBone.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CSkinRules
|
|
{
|
|
std::vector<CVirtualBone> x0_bones;
|
|
public:
|
|
CSkinRules(CInputStream& in);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __PSHAG_CSKINRULES_HPP__
|