Cleanup CSConsole, add start of Options and Log panels

This commit is contained in:
Sinai
2021-05-13 03:55:08 +10:00
parent 70d66f93a5
commit 3e44317861
5 changed files with 108 additions and 35 deletions

View File

@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UnityExplorer.UI.Panels
{
public class ConsoleLogPanel : UIPanel
{
public override string Name => "Console Log";
public override UIManager.Panels PanelType => UIManager.Panels.ConsoleLog;
public override int MinWidth => 300;
public override int MinHeight => 75;
public override void ConstructPanelContent()
{
throw new NotImplementedException();
}
public override void DoSaveToConfigElement()
{
throw new NotImplementedException();
}
public override string GetSaveData()
{
throw new NotImplementedException();
}
protected internal override void DoSetDefaultPosAndAnchors()
{
throw new NotImplementedException();
}
}
}

View File

@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UnityExplorer.UI.Panels
{
public class OptionsPanel : UIPanel
{
public override string Name => "Options";
public override UIManager.Panels PanelType => UIManager.Panels.Options;
public override int MinWidth => 400;
public override int MinHeight => 200;
public override void ConstructPanelContent()
{
throw new NotImplementedException();
}
public override void DoSaveToConfigElement()
{
throw new NotImplementedException();
}
public override string GetSaveData()
{
throw new NotImplementedException();
}
protected internal override void DoSetDefaultPosAndAnchors()
{
throw new NotImplementedException();
}
}
}