We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 647967f commit efd4c3fCopy full SHA for efd4c3f
src/app/main.cpp
@@ -1,15 +1,15 @@
1
// SPDX-License-Identifier: GPL-3.0-or-later
2
3
#include "app.h"
4
-#include "globalmodule.h"
+#include "uicomponents/uicomponentsmodule.h"
5
#include "keyboard/keyboardmodule.h"
6
7
using namespace scratchcpp;
8
9
int main(int argc, char *argv[])
10
{
11
App app;
12
- app.addModule(new GlobalModule);
+ app.addModule(new uicomponents::UiComponentsModule);
13
app.addModule(new keyboard::KeyboardModule);
14
15
return app.run(argc, argv);
0 commit comments