Example #1
0
		internal BspSubmeshKey(int cluster, BspMaterialKey material)
		{
			this.cluster = cluster;
			this.material = material;
		}
Example #2
0
		public bool Equals(BspMaterialKey other)
		{
			return other.material == this.material && other.lightmap == this.lightmap;
		}