Files
Chef-s-Solitaire_Unity_IOS/Assets/BingoSun/Scripts/Sercri/FsConst.cs
T

10 lines
238 B
C#
Raw Normal View History

2026-06-15 11:34:31 +08:00
namespace BingoBrain.Core
{
public static class FsConst
{
public const bool BoolDefault = false;
public const int IntDefault = 0;
public const int IntTrue = 1;
public const int IntFalse = 2;
}
}