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