diff options
author | Treeki <treeki@gmail.com> | 2011-02-11 01:10:44 +0100 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2011-02-11 01:10:44 +0100 |
commit | 0d017deb24e7f6f8e049616a71691f1401c50b6a (patch) | |
tree | 8b107dcb3d51163831ffcce96010367f3779585e /NW4RTools/DisplayList.cs | |
parent | 58dead7b909861732011325f5d4844eae21a9bc2 (diff) | |
download | nw4rtools-0d017deb24e7f6f8e049616a71691f1401c50b6a.tar.gz nw4rtools-0d017deb24e7f6f8e049616a71691f1401c50b6a.zip |
tons of stuff: more work on shapes, unfinished OBJ exporter, ...
Diffstat (limited to '')
-rw-r--r-- | NW4RTools/DisplayList.cs | 25 |
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() { + } + } +} + |