You've already forked pikmin2-dtk
mirror of
https://github.com/encounter/pikmin2-dtk.git
synced 2026-03-30 11:35:18 -07:00
15 lines
273 B
C++
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
|