5 lines
134 B
C#
5 lines
134 B
C#
|
public static class Globals
|
||
|
{
|
||
|
public const float EpsPosition = 0.01f;
|
||
|
public const float EpsPositionSquared = 0.01f * 0.01f;
|
||
|
}
|