Core - Rename IVersion to IMinecraftJavaVersion

This commit is contained in:
miku-666
2026-01-16 15:27:31 +01:00
parent 18540ec746
commit 3425c00502
5 changed files with 28 additions and 28 deletions

View File

@@ -0,0 +1,9 @@
using System;
namespace PckStudio.Core.IO.Java
{
interface IMinecraftJavaVersion : IEquatable<Version>
{
string ToString(string seperator);
}
}