Files
2024-05-28 22:01:42 -06:00

15 lines
273 B
C++

#ifndef _SYSSHAPE_MTXOBJECT_H
#define _SYSSHAPE_MTXOBJECT_H
struct Matrixf;
namespace SysShape {
struct MtxObject {
virtual Matrixf* getMatrix(int jointIndex) = 0; // _08
virtual bool isModel() { return false; } // _0C (weak)
};
} // namespace SysShape
#endif