Files

10 lines
248 B
C#
Raw Permalink Normal View History

2026-07-06 16:27:14 +08:00
namespace TowerClimberChronicles
{
public static class PrefsConst
{
public const bool BoolDefault = false;
public const int IntDefault = 0;
public const int IntTrue = 1;
public const int IntFalse = 2;
}
}