Files
basic-computer-games/07_Basketball/csharp/JumpShot.cs
T

9 lines
117 B
C#

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