12 lines
378 B
C#
12 lines
378 B
C#
namespace Milimoe.RainBOT.Settings
|
|
{
|
|
public class OSMCore
|
|
{
|
|
public const string version = "v1.0";
|
|
public const string version2 = "Patch2 Test";
|
|
public const string time = "Mar. 22nd, 2024";
|
|
|
|
public static string Info => $"OSM Core {version} {version2}\r\nAuthor: Milimoe\r\nBuilt on {time}\r\nSee: https://github.com/milimoe";
|
|
}
|
|
}
|