mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-12 07:40:50 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
18 lines
347 B
C#
18 lines
347 B
C#
namespace Animal
|
|
{
|
|
public class Branch
|
|
{
|
|
public string Text { get; set; }
|
|
|
|
public bool IsEnd => Yes == null && No == null;
|
|
|
|
public Branch Yes { get; set; }
|
|
|
|
public Branch No { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{Text} : IsEnd {IsEnd}";
|
|
}
|
|
}
|
|
} |