Exemplo n.º 1
0
 // Token: 0x0600006E RID: 110 RVA: 0x00003D2F File Offset: 0x00001F2F
 public ListContainer(List <Displayable> children, ListFlow flow = ListFlow.COLUMN,
                      ListDirection direction = ListDirection.NORMAL)
 {
     this.children  = children;
     this.flow      = flow;
     this.direction = direction;
 }
Exemplo n.º 2
0
 public ListContainer(ListFlow flow = ListFlow.COLUMN, ListDirection direction = ListDirection.NORMAL) : this(new List <Displayable>(), flow, direction)
 {
 }