diff options
author | Treeki <treeki@gmail.com> | 2011-03-03 22:01:38 +0100 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2011-03-03 22:01:38 +0100 |
commit | a5b6dc1789f2e06a26fe6a0510aee04aeccdc70b (patch) | |
tree | 15065b84de58b2db03527da76b32f9b4b3c23c98 /NW4RTools/Models/Model.cs | |
parent | b28711d999c86c40a11f61846ab15685c2fc172b (diff) | |
download | nw4rtools-a5b6dc1789f2e06a26fe6a0510aee04aeccdc70b.tar.gz nw4rtools-a5b6dc1789f2e06a26fe6a0510aee04aeccdc70b.zip |
tidying up a bit, also it compiles now
Diffstat (limited to 'NW4RTools/Models/Model.cs')
-rw-r--r-- | NW4RTools/Models/Model.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/NW4RTools/Models/Model.cs b/NW4RTools/Models/Model.cs index 71edaf3..7c7e912 100644 --- a/NW4RTools/Models/Model.cs +++ b/NW4RTools/Models/Model.cs @@ -40,6 +40,17 @@ namespace NW4RTools.Models { public Model() { + Bytecode = new ResDict<ByteCode>(); + Nodes = new ResDict<Node>(); + VtxPosData = new ResDict<VertexPosData>(); + VtxNrmData = new ResDict<VertexNrmData>(); + VtxClrData = new ResDict<VertexClrData>(); + VtxTexCoordData = new ResDict<VertexTexCoordData>(); + Materials = new ResDict<Material>(); + Shaders = new ResDict<Shader>(); + Shapes = new ResDict<Shape>(); + PairingLookupByTexture = new ResDict<List<TexMatPairing>>(); + PairingLookupByPalette = new ResDict<List<TexMatPairing>>(); } } } |