summaryrefslogtreecommitdiff
path: root/NW4RTools/DisplayList.cs
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2011-02-11 01:10:44 +0100
committerTreeki <treeki@gmail.com>2011-02-11 01:10:44 +0100
commit0d017deb24e7f6f8e049616a71691f1401c50b6a (patch)
tree8b107dcb3d51163831ffcce96010367f3779585e /NW4RTools/DisplayList.cs
parent58dead7b909861732011325f5d4844eae21a9bc2 (diff)
downloadnw4rtools-0d017deb24e7f6f8e049616a71691f1401c50b6a.tar.gz
nw4rtools-0d017deb24e7f6f8e049616a71691f1401c50b6a.zip
tons of stuff: more work on shapes, unfinished OBJ exporter, ...
Diffstat (limited to '')
-rw-r--r--NW4RTools/DisplayList.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/NW4RTools/DisplayList.cs b/NW4RTools/DisplayList.cs
new file mode 100644
index 0000000..6885f39
--- /dev/null
+++ b/NW4RTools/DisplayList.cs
@@ -0,0 +1,25 @@
+using System;
+
+// COMPLETELY UNFINISHED
+
+namespace NW4RTools {
+ public class DisplayList {
+ public class Command {
+ public virtual byte GetStartByte() {
+ return 0;
+ }
+
+ //public abstract void Write(OutputStream os);
+ }
+
+ public class DrawCommand : Command {
+ public PrimitiveType Primitive;
+ }
+
+
+
+ public DisplayList() {
+ }
+ }
+}
+