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
Line 
1/*!
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 */
7
8#ifndef _MD3_MODEL_H
9#define _MD3_MODEL_H
10
11#include <string>
12#include "model.h"
13
14
15namespace md3
16{
17
18
19class MD3Data;
20
21class MD3Model : public Model
22{
23
24  public:
25    MD3Model(std::string filename, float scaling);
26    ~MD3Model();
27
28
29  private:
30    MD3Data*            md3Data;           //!< reference to the md3 model data
31};
32
33}
34
35#endif /* _MD3_MODEL_H */
Note: See TracBrowser for help on using the repository browser.