Removed unnecessary functionality remaining from standalone overlay app.

This commit is contained in:
2025-05-22 11:13:08 -04:00
parent 276f6c08fc
commit f19d186008
3 changed files with 0 additions and 75 deletions

View File

@@ -9,16 +9,11 @@ namespace osrs_toolbox
private int _competitionId = -1;
private int _groupId = -1;
private string _playerName = string.Empty;
private string _testOutput = string.Empty;
private StackPanel _gridOutput = new StackPanel();
private Visibility _controlsVisible = Visibility.Visible;
private string _toggleButtonText = string.Empty;
private bool _hideOtherPlayers = false;
private bool _hideZeroKC = false;
private ICommand _update;
private ICommand _toggleVisibility;
private ICommand _closeApp;
public int CompetitionID
{
@@ -35,26 +30,11 @@ namespace osrs_toolbox
get { return _playerName; }
set { SetProperty(ref _playerName, value, nameof(PlayerName)); }
}
public string TestOutput
{
get { return _testOutput; }
set { SetProperty(ref _testOutput, value, nameof(TestOutput)); }
}
public StackPanel GridOutput
{
get { return _gridOutput; }
set { SetProperty(ref _gridOutput, value, nameof(GridOutput)); }
}
public Visibility ControlsVisible
{
get { return _controlsVisible; }
set { SetProperty(ref _controlsVisible, value, nameof(ControlsVisible)); }
}
public string ToggleButtonText
{
get { return _toggleButtonText; }
set { SetProperty(ref _toggleButtonText, value, nameof(ToggleButtonText)); }
}
public bool HideOtherPlayers
{
get { return _hideOtherPlayers; }
@@ -71,15 +51,5 @@ namespace osrs_toolbox
get { return _update; }
set { SetProperty(ref _update, value, nameof(Update)); }
}
public ICommand ToggleVisibility
{
get { return _toggleVisibility; }
set { SetProperty(ref _toggleVisibility, value, nameof(ToggleVisibility)); }
}
public ICommand CloseApp
{
get { return _closeApp; }
set { SetProperty(ref _closeApp, value, nameof(CloseApp)); }
}
}
}