Removed unnecessary MVVM layers for the splash screen.

This commit is contained in:
2025-05-22 10:47:16 -04:00
parent f297fef417
commit 5b016f9801
2 changed files with 0 additions and 27 deletions

View File

@@ -1,6 +0,0 @@
namespace osrs_toolbox
{
public abstract class SplashScreenModel : ModelBase
{
}
}

View File

@@ -1,21 +0,0 @@
namespace osrs_toolbox
{
public class SplashScreenViewModel : SplashScreenModel
{
public SplashScreenViewModel()
{
InitializeVariables();
InitializeCommands();
}
private void InitializeVariables()
{
}
private void InitializeCommands()
{
}
}
}