mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-10-05 12:07:25 -04: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,
|
|
}
|
|
} |