10 lines
243 B
C#
10 lines
243 B
C#
namespace ZooMatch
|
|
{
|
|
public static class PrefsConst
|
|
{
|
|
public const bool BoolDefault = false;
|
|
public const int IntDefault = 0;
|
|
public const int IntTrue = 1;
|
|
public const int IntFalse = 2;
|
|
}
|
|
} |