mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
12 lines
177 B
C#
12 lines
177 B
C#
using BugGame.Resources;
|
|
|
|
namespace BugGame.Parts;
|
|
|
|
internal class Legs : PartCollection
|
|
{
|
|
public Legs()
|
|
: base(2, Message.LegAdded, Message.LegsFull)
|
|
{
|
|
}
|
|
}
|