Ejemplo n.º 1
0
 public ChoiceMessage(IEnumerable <Tuple <T, string> > answers, string question = null)
 {
     Answers     = new List <Tuple <T, string> >(answers);
     WaitPointer = ConsoleObjects.CreateFromGlyph(PointerGlyph);
     Other       = new List <GameObject>();
     if (question != null)
     {
         Text = ConsoleObjects.CreateFromString(question);
     }
 }
Ejemplo n.º 2
0
 public ConsoleRenderable(int glyph, Color color = new Color())
 {
     ConsoleObject = ConsoleObjects.CreateFromGlyph(glyph, color);
 }