Esempio n. 1
0
 public Stash()
 {
     _logs         = new Logs(256);
     _logsReadOnly = _logs.AsReadOnly();
     _strCache     = new Util.StringCache();
     Organizer     = new Organizer(this);
 }
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;
 }