Esempio n. 1
0
 public void AddLogEntry(LayoutDirection direction, int frameId, LayoutReason reason, string description = null)
 {
     log.Add(new LayoutHistoryEntry()
     {
         direction   = direction,
         frameId     = frameId,
         reason      = reason,
         description = description
     });
 }
Esempio n. 2
0
 public LayoutFrameDataEntry(LayoutReason reason, string description)
 {
     this.reason      = reason;
     this.description = description;
 }