Files
RedHotRoast-ios/Assets/Scripts/Define/Constant/PrefsConst.cs
T
2026-04-22 09:52:55 +08:00

10 lines
237 B
C#

namespace FlowerPower
{
public static class PrefsConst
{
public const bool BoolDefault = false;
public const int IntDefault = 0;
public const int IntTrue = 1;
public const int IntFalse = 2;
}
}