mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
15 lines
370 B
C++
15 lines
370 B
C++
#include "app.h"
|
|
#include "settings_icon.h"
|
|
|
|
namespace Settings {
|
|
|
|
App::App(Container * container) :
|
|
::App(container, &m_stackViewController, "Parametre", "PARAMETRE", ImageStore::SettingsIcon),
|
|
m_preference(),
|
|
m_mainController(MainController(nullptr, &m_preference)),
|
|
m_stackViewController(StackViewController(&m_modalViewController, &m_mainController))
|
|
{
|
|
}
|
|
|
|
}
|