mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-10 07:44:37 +00:00
ad23f95319
only basic messages, wip.
14 lines
324 B
C#
14 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";
|
|
}
|
|
}
|