mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
10 lines
104 B
C#
10 lines
104 B
C#
namespace Boxing;
|
|
|
|
public enum Punch
|
|
{
|
|
FullSwing = 1,
|
|
Hook = 2,
|
|
Uppercut = 3,
|
|
Jab = 4
|
|
}
|