namespace Pong.Scripts; public static class Constants { /// /// a constant representing 1 Meter in pixels. /// public const double Meter = 10; /// /// the pixel size of either the vertical or the horizontal size of the walls. /// public const long WallSize = 30; /// /// 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. /// public const long WallSizeExtents = WallSize / 2; }