diff --git a/osrs-toolbox/Models/SplashScreenModel.cs b/osrs-toolbox/Models/SplashScreenModel.cs deleted file mode 100644 index 06ec036..0000000 --- a/osrs-toolbox/Models/SplashScreenModel.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace osrs_toolbox -{ - public abstract class SplashScreenModel : ModelBase - { - } -} diff --git a/osrs-toolbox/ViewModels/SplashScreenViewModel.cs b/osrs-toolbox/ViewModels/SplashScreenViewModel.cs deleted file mode 100644 index 1c758fa..0000000 --- a/osrs-toolbox/ViewModels/SplashScreenViewModel.cs +++ /dev/null @@ -1,21 +0,0 @@ -namespace osrs_toolbox -{ - public class SplashScreenViewModel : SplashScreenModel - { - public SplashScreenViewModel() - { - InitializeVariables(); - InitializeCommands(); - } - - private void InitializeVariables() - { - - } - - private void InitializeCommands() - { - - } - } -}