Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/bsp_model/src/lib/graphics/importer/md3/md3_model.h @ 8357

Last change on this file since 8357 was 8357, checked in by patrick, 18 years ago

bsp: more data reading again

File size: 516 bytes
RevLine 
[8342]1/*!
[8343]2 * @file md3_model.h
3 *
4 * Code heavely inspired by: JAVA MD3 Model Viewer - A Java based Quake 3 model viewer
5 * Copyright (C) 1999 Erwin 'KLR8' Vervaet
6 */
[8342]7
[8343]8#ifndef _MD3_MODEL_H
9#define _MD3_MODEL_H
[8342]10
[8343]11#include <string>
[8353]12#include "model.h"
[8342]13
14
[8351]15namespace md3
16{
17
[8354]18
[8357]19class MD3Data;
20
[8353]21class MD3Model : public Model
[8342]22{
23
[8343]24  public:
[8353]25    MD3Model(std::string filename, float scaling);
[8343]26    ~MD3Model();
[8342]27
28
[8343]29  private:
[8354]30    MD3Data*            md3Data;           //!< reference to the md3 model data
[8357]31};
[8354]32
[8351]33}
[8342]34
[8343]35#endif /* _MD3_MODEL_H */
Note: See TracBrowser for help on using the repository browser.