metaforce/DataSpec/DNAMP2/CSKR.hpp

24 lines
370 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2015-08-13 07:29:00 +00:00
2018-06-29 20:21:36 +00:00
#include "DataSpec/DNACommon/DNACommon.hpp"
2015-08-13 07:29:00 +00:00
#include "CINF.hpp"
2015-09-26 03:12:08 +00:00
#include "../DNAMP1/CSKR.hpp"
2015-08-13 07:29:00 +00:00
2017-12-29 08:08:12 +00:00
namespace DataSpec::DNAMP2
2015-08-13 07:29:00 +00:00
{
2015-09-26 03:12:08 +00:00
struct CSKR : DNAMP1::CSKR
2015-08-13 07:29:00 +00:00
{
2015-09-26 03:12:08 +00:00
Delete expl;
const atInt16* getMatrixBank(size_t) const
2015-08-13 07:29:00 +00:00
{
2015-09-26 03:12:08 +00:00
return nullptr;
}
2015-08-13 07:29:00 +00:00
2017-12-29 08:08:12 +00:00
void weightVertex(hecl::blender::PyOutStream& os, const CINF& cinf, atUint32 idx) const;
2015-08-13 07:29:00 +00:00
};
}