2015-08-13 07:29:00 +00:00
|
|
|
#ifndef _DNAMP2_CSKR_HPP_
|
|
|
|
#define _DNAMP2_CSKR_HPP_
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // _DNAMP2_CSKR_HPP_
|