blob: 767470e1cb78536b1e8d976d609d74ae7b0d4aa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
using System.Collections.Generic;
namespace NW4RTools.Models {
public class Shader {
public UInt32 Index;
public byte TevStageCount;
public UInt32 Unk1, Unk2; // TODO: figure these out
public byte[] DisplayList;
public Shader() {
}
}
}
|