Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 6, 2005, 12:23:14 PM (19 years ago)
Author:
patrick
Message:

orxonox/branches/md2_loader: implemented importMD2 header function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/md2_loader/src/lib/graphics/importer/abstract_model.h

    r4078 r4079  
    2525#include "base_object.h"
    2626
     27template<class T> class tList;
    2728
    2829
     
    9293        int currentAnim;                                        // The current index into pAnimations list (NEW)
    9394        int currentFrame;                                       // The current frame of the current animation (NEW)
    94         //vector<tAnimationInfo> pAnimations; // The list of animations (NEW)
    95         //vector<tMaterialInfo> pMaterials;     // The list of material information (Textures and colors)
    96         //vector<t3DObject> pObject;                    // The object list for our model
     95        tList<tAnimationInfo>* animationList; // The list of animations (NEW)
     96        tList<tMaterialInfo>* materialList;     // The list of material information (Textures and colors)
     97        tList<t3DObject>* objectList;                   // The object list for our model
    9798};
    9899
     
    103104
    104105 public:
    105   AbstractModel();
    106   virtual ~AbstractModel();
    107 
    108 
    109  private:
    110 
     106  AbstractModel() {}
     107  virtual ~AbstractModel() {}
    111108};
    112109
Note: See TracChangeset for help on using the changeset viewer.