miscellaneous/model_template/ormodel_template_model.h
#ifndef __ORMODEL_TEMPLATE_MODEL_H__
#define __ORMODEL_TEMPLATE_MODEL_H__
#define ORMODELCUSTOM__CLASSNAME ORModelCustom
#define ORMODELCUSTOM__CLASSSTR "ORModelCustom"
#define ORMODELCUSTOM__DESCSTR "OR - Sample Custom Model"
class ORModelCustom : public FBModel
{
public:
virtual bool FBCreate();
virtual void FBDestroy();
virtual void CreateGeometry ();
virtual bool FbxStore(FBFbxObject* pFbxObject,
kFbxObjectStore pStoreWhat);
virtual bool FbxRetrieve(FBFbxObject* pFbxObject,
kFbxObjectStore pStoreWhat);
};
#endif