JK2eA
 All Classes Functions Variables
MorphTargetMesh.h
00001 #pragma once
00002 
00003 #define MORPH_MAJOR_VERSION 0
00004 #define MORPH_MINOR_VERSION 1
00005 
00009 class CMorphTargetMesh {
00010 protected:
00011         float* m_offsets;               
00012         int    m_target_count;  
00013 
00014 public:
00018         CMorphTargetMesh();
00022         ~CMorphTargetMesh();
00023 
00030         bool                    Load(const char* file_name, const unsigned short match_vertex_count);
00031 
00036         inline float*   GetOffsets() { return m_offsets; }
00041         inline int              GetTargetCount() { return m_target_count; }
00042 };
00043