示例#1
0
        internal static string Display(IEnumerable <QThing> list)
        {
            if (list.Count() == 0)
            {
                return("Empty");
            }

            return(list.Aggregate(new StringBuilder(), (acc, thing) => {
                acc.Append(LogUtils.Display(thing) + " | ");
                return acc;
            }).ToString());
        }
示例#2
0
 public string Display()
 {
     return("SpawnNear " + LogUtils.Display(this.qthing) + " on " + this.cell);
 }
示例#3
0
 public string Display()
 {
     return("DeSpawn " + LogUtils.Display(this.thing) + " on " + this.thing.Position);
 }