Pong/Scripts/Constants.cs
Fries 02c5b90415 make a basic prototype for a scene.
right now theres just a moving ball, inside a box, with a working paddle. i had to make the ball kinematic and tell the ball to bounce when it hits the other direction.
2023-05-16 23:15:31 -07:00

9 lines
173 B
C#

namespace Pong.Scripts;
public static class Constants
{
/// <summary>
/// a constant representing 1 Meter in pixels.
/// </summary>
internal const double Meter = 10;
}