17 lines
574 B
C#
17 lines
574 B
C#
#region copyright
|
|
// ---------------------------------------------------------------
|
|
// Copyright (C) Dmitriy Yukhanov - focus [https://codestage.net]
|
|
// ---------------------------------------------------------------
|
|
#endregion
|
|
|
|
namespace CodeStage.AntiCheat.Common
|
|
{
|
|
public static class ACTkConstants
|
|
{
|
|
public const string Version = "2.3.1";
|
|
|
|
internal const string LogPrefix = "[ACTk] ";
|
|
internal const string DocsRootUrl = "http://codestage.net/uas_files/actk/api/";
|
|
internal static readonly char[] StringKey = {'\x69', '\x108', '\x105', '\x110', '\x97'};
|
|
}
|
|
} |