mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
11 lines
169 B
C#
11 lines
169 B
C#
using BugGame.Resources;
|
|
|
|
namespace BugGame.Parts;
|
|
|
|
internal class Tail : Part
|
|
{
|
|
public Tail()
|
|
: base(Message.TailAdded, Message.TailNotNeeded)
|
|
{
|
|
}
|
|
} |