Pong/Scripts/Data/PlayerNumber.cs
Fries f84479e03a make a main menu and score system
i added a main menu scene and a score system that is written in GDScript instead of C# for a change. the WallManager, the thing that detects collisions, calls the score method on the ScoreManager.
2023-05-19 19:42:56 -07:00

7 lines
82 B
C#

namespace Pong.Scripts.Data;
public enum PlayerNumber
{
PlayerOne,
PlayerTwo
}