Files
ZooMatch-GP/Assets/Scripts/Define/Constant/PrefsConst.cs
T

10 lines
243 B
C#
Raw Normal View History

namespace ZooMatch
2026-06-02 10:26:44 +08:00
{
public static class PrefsConst
{
public const bool BoolDefault = false;
public const int IntDefault = 0;
public const int IntTrue = 1;
public const int IntFalse = 2;
}
}