summaryrefslogtreecommitdiff
path: root/opengl/generate.h
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2005-04-17 01:53:15 +0000
committerIan C <ianc@noddybox.co.uk>2005-04-17 01:53:15 +0000
commit14123d8051df5cbae0331c28f63a8ec3ef9a3852 (patch)
treeaf216501262ec2e6ced154b4bfe02c0f7b679495 /opengl/generate.h
parent71c1ae31007891ecfd59236ba8564bc4b5deb1e4 (diff)
Development checking
Diffstat (limited to 'opengl/generate.h')
-rw-r--r--opengl/generate.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/opengl/generate.h b/opengl/generate.h
index 2aa1ec1..f7f07df 100644
--- a/opengl/generate.h
+++ b/opengl/generate.h
@@ -30,15 +30,20 @@ class Generate
{
public:
Generate(msModel *model);
+
virtual ~Generate();
std::string GenerateFuncname();
+
void Setup(const std::string& dir,
const std::string& funcname,
bool texture,
bool info,
- bool forceCOG);
+ bool forceCOG,
+ bool blitzMax);
+
void MakeFiles();
+
std::string Info();
private:
@@ -64,9 +69,14 @@ private:
float m_max_z;
float m_min_z;
+ bool m_blitzMax;
+
const char *Space(int len);
void CalcModelBounds();
+
+ void GenerateC();
+ void GenerateBlitzMax();
};
#endif // GENERATE_H