Esempio n. 1
0
 public View()
     : base("SystemInfo", Icons.Icon)
 {
     _scroll = new GUI.ScrollView(Vector2.zero, true, true);
     _pages  = new Dictionary <string, List <RowDef> >(8);
     AddAllPages();
 }
Esempio n. 2
0
 public View(Config config, Organizer organizer)
     : base("Log", Icons.Log)
 {
     _config = config;
     _table  = new GUI.Table(
         GUI.Table.Direction.Vertical,
         _rowHeight, 0,
         GUI.Styles.BG);
     _stackScroll = new GUI.ScrollView(Vector2.zero, true, true);
     _organizer   = organizer;
 }