Files
BingoGrassland/Assets/BingoSun/Scripts/Sercri/FsConst.cs
T
2026-04-20 13:49:36 +08:00

10 lines
238 B
C#

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;
}
}