mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 08:16:16 +00:00
10 lines
155 B
C#
10 lines
155 B
C#
using System;
|
|
|
|
namespace PckStudio.Core.IO.Java
|
|
{
|
|
interface IVersion : IEquatable<Version>
|
|
{
|
|
string ToString(string seperator);
|
|
}
|
|
}
|