mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 15:16:33 -08:00
14 lines
281 B
C#
14 lines
281 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) => builder.AppendLine("TTTTTB B");
|
|
} |