mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
9 lines
117 B
C#
9 lines
117 B
C#
namespace Basketball;
|
|
|
|
public class JumpShot : Shot
|
|
{
|
|
public JumpShot()
|
|
: base("Jump shot")
|
|
{
|
|
}
|
|
} |