Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/md2_loader/src/lib/graphics/importer/md2Model.h @ 4065

Last change on this file since 4065 was 4065, checked in by patrick, 19 years ago

branches/md2_importer: just creted the files, started implementing a fps counter

File size: 440 bytes
Line 
1/*!
2    \file md2Model.h
3    \brief Definition of an MD2 Model, a model format invented by ID Software.
4       
5        We are deeply thankfull for all the wunderfull things id software made for us gamers!
6
7*/
8
9#ifndef _MD2MODEL_H
10#define _MD2MODEL_H
11
12#include "abstract_model.h"
13
14//! A class for representating a MD2Model
15class MD2Model : public AbstractModel {
16
17 public:
18  MD2Model();
19  virtual ~MD2Model();
20
21
22 private:
23
24};
25
26#endif /* _MD2MODEL_H */
Note: See TracBrowser for help on using the repository browser.