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