mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-10 07:44:37 +00:00
15 lines
324 B
C#
15 lines
324 B
C#
|
namespace Supercell.GUT.Logic;
|
|||
|
|
|||
|
public static class LogicVersion
|
|||
|
{
|
|||
|
public static int GetVersionNumber(int major, int build, int minor)
|
|||
|
{
|
|||
|
return minor | (major << 20) | (build << 12);
|
|||
|
}
|
|||
|
|
|||
|
public static string GetKey()
|
|||
|
{
|
|||
|
return "9o23ljkmsdfsdippwe0qr2ke1jejhjhjdfb121fpWE802lss";
|
|||
|
}
|
|||
|
}
|