mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 07:36:10 +00:00
18 lines
360 B
C#
18 lines
360 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PckStudio.Models
|
|
{
|
|
internal class TexelComparer : global::System.Collections.Generic.IComparer<global::PckStudio.Models.Texel>
|
|
{
|
|
public int Compare(global::PckStudio.Models.Texel x, global::PckStudio.Models.Texel y)
|
|
{
|
|
return -x.Z.CompareTo(y.Z);
|
|
}
|
|
|
|
public TexelComparer()
|
|
{
|
|
}
|
|
}
|
|
}
|