aboutsummaryrefslogtreecommitdiff
path: root/src/model.h
diff options
context:
space:
mode:
authortaw27 <taw27@84d2e878-0bd5-11dd-ad15-13eda11d74c5>2008-04-16 16:57:56 +0000
committertaw27 <taw27@84d2e878-0bd5-11dd-ad15-13eda11d74c5>2008-04-16 16:57:56 +0000
commitf0a0118393a3d121bcb83047b5b9ac95eb0621ba (patch)
treecfc4f3f7955b4829317fa9b7865e328ccabfb129 /src/model.h
Initial import
git-svn-id: svn://cook.msm.cam.ac.uk:745/thrust3d/thrust3d@1 84d2e878-0bd5-11dd-ad15-13eda11d74c5
Diffstat (limited to 'src/model.h')
-rw-r--r--src/model.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/model.h b/src/model.h
new file mode 100644
index 0000000..926e9b5
--- /dev/null
+++ b/src/model.h
@@ -0,0 +1,25 @@
+/*
+ * model.h
+ *
+ * Basic functions to handle models
+ *
+ * (c) 2008 Thomas White <taw27@cam.ac.uk>
+ *
+ * thrust3d - a silly game
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#ifndef MODEL_H
+#define MODEL_H
+
+#include "types.h"
+
+extern ModelContext *model_init(void);
+extern ModelInstance *model_instance_new(ModelContext *ctx, const char *name, RenderContext *render);
+
+#endif /* MODEL_H */
+