mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-18 06:57:46 +08:00
37 lines
902 B
C#
37 lines
902 B
C#
![]() |
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|