Pong/Scripts/Constants.cs

16 lines
391 B
C#
Raw Normal View History

namespace Pong.Scripts;
public static class Constants
{
/// <summary>
/// a constant representing 1 Meter in pixels.
/// </summary>
internal const double Meter = 10;
/// <summary>
/// the extents (half of the size) of the pixel size of either the width for the vertical walls,
/// or the height for the horizontal walls.
/// </summary>
internal const long WallSizeExtents = 15;
}