///////////////////////////////////////////////////////////////////////////////
//  CHEOBoneWeight.cpp

#include "CHEOBoneWeight.h"

namespace heo {

CHEOBoneWeight::CHEOBoneWeight(const std::array<short, 4>& IndexList, const std::array<float, 4>& WeightList) :
	m_IndexList(IndexList),
	m_WeightList(WeightList)
{
}

CHEOBoneWeight::~CHEOBoneWeight()
{
}

const std::array<short, 4>& CHEOBoneWeight::GetIndexList() const
{
	return m_IndexList;
}

const std::array<float, 4>& CHEOBoneWeight::GetWeightList() const
{
	return m_WeightList;
}

}

