mirror of https://github.com/AxioDL/metaforce.git
26 lines
431 B
C++
26 lines
431 B
C++
#ifndef _DNAMP2_CSKR_HPP_
|
|
#define _DNAMP2_CSKR_HPP_
|
|
|
|
#include "../DNACommon/DNACommon.hpp"
|
|
#include "CINF.hpp"
|
|
#include "../DNAMP1/CSKR.hpp"
|
|
|
|
namespace DataSpec::DNAMP2
|
|
{
|
|
|
|
struct CSKR : DNAMP1::CSKR
|
|
{
|
|
Delete expl;
|
|
|
|
const atInt16* getMatrixBank(size_t) const
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
void weightVertex(hecl::blender::PyOutStream& os, const CINF& cinf, atUint32 idx) const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // _DNAMP2_CSKR_HPP_
|