mirror of
				https://github.com/ClassiCube/ClassiCube.git
				synced 2025-11-03 19:16:45 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			330 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			330 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using ClassicalSharp.GraphicsAPI;
 | 
						|
 | 
						|
namespace ClassicalSharp {
 | 
						|
	
 | 
						|
	public struct ModelPart {
 | 
						|
		
 | 
						|
		public int Offset, Count;
 | 
						|
		
 | 
						|
		public ModelPart( int vertexOffset, int vertexCount ) {
 | 
						|
			Offset = vertexOffset;
 | 
						|
			Count = vertexCount;
 | 
						|
		}
 | 
						|
	}
 | 
						|
	
 | 
						|
	public enum SkinType {
 | 
						|
		Type64x32,
 | 
						|
		Type64x64,
 | 
						|
		Type64x64Slim,
 | 
						|
	}
 | 
						|
} |