mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
20 lines
345 B
C#
20 lines
345 B
C#
using System.Text;
|
|
using BugGame.Resources;
|
|
|
|
namespace BugGame.Parts;
|
|
|
|
internal class Tail : Part
|
|
{
|
|
public Tail()
|
|
: base(Message.TailAdded, Message.TailNotNeeded)
|
|
{
|
|
}
|
|
|
|
public void AppendTo(StringBuilder builder)
|
|
{
|
|
if (IsPresent)
|
|
{
|
|
builder.AppendLine("TTTTTB B");
|
|
}
|
|
}
|
|
} |