mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-08-01 04:58:44 +02:00
12 lines
313 B
C++
12 lines
313 B
C++
#include "common.h"
|
|
#include "settings/ISettingsController.h"
|
|
#include "ThemeListViewModel.h"
|
|
|
|
ThemeListViewModel::ThemeListViewModel(ISettingsController* settingsController)
|
|
: _settingsController(settingsController) { }
|
|
|
|
void ThemeListViewModel::NavigateUp() const
|
|
{
|
|
_settingsController->NavigateUp();
|
|
}
|