Files
2026-06-12 10:11:36 +08:00

10 lines
236 B
C#

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