Files
BlitzNext/Runtime/blitz3d/bd2model.hpp
T

12 lines
125 B
C++
Raw Normal View History

2014-01-31 08:23:00 +13:00
#ifndef BD2MODEL_H
#define BD2MODEL_H
2019-01-18 17:04:17 +01:00
class BD2Model : public Model {
public:
private:
2014-01-31 08:23:00 +13:00
struct Rep;
2019-01-18 17:04:17 +01:00
Rep* rep;
2014-01-31 08:23:00 +13:00
};
#endif