From 0d017deb24e7f6f8e049616a71691f1401c50b6a Mon Sep 17 00:00:00 2001 From: Treeki Date: Fri, 11 Feb 2011 01:10:44 +0100 Subject: tons of stuff: more work on shapes, unfinished OBJ exporter, ... --- NW4RTools/DisplayList.cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 NW4RTools/DisplayList.cs (limited to 'NW4RTools/DisplayList.cs') 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() { + } + } +} + -- cgit v1.2.3