Files
basic-computer-games/07_Basketball/csharp/JumpShot.cs
2022-04-11 08:45:15 +10:00

9 lines
117 B
C#

namespace Basketball;
public class JumpShot : Shot
{
public JumpShot()
: base("Jump shot")
{
}
}