mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 20:19:34 +08:00
19 lines
509 B
C#
19 lines
509 B
C#
using Milimoe.FunGame.Core.Entity;
|
|
using System.Text;
|
|
|
|
namespace Milimoe.FunGame.Core.Library.Constant
|
|
{
|
|
public class General
|
|
{
|
|
// Static Variable
|
|
public static Empty EntityInstance { get; } = new();
|
|
public static Encoding DefaultEncoding { get; } = Encoding.Unicode;
|
|
|
|
// Const
|
|
public const int MaxRetryTimes = 20;
|
|
public const int MaxTask_1C2G = 10;
|
|
public const int MaxTask_General = 20;
|
|
public const int MaxTask_4C4G = 40;
|
|
}
|
|
}
|