Add XP to hacking apps

This commit is contained in:
Willy-JL
2023-03-27 06:00:36 +01:00
parent 34298e7060
commit f8e140de0c
22 changed files with 47 additions and 13 deletions

View File

@@ -1,6 +1,7 @@
#include "subbrute_i.h"
#include "subbrute_custom_event.h"
#include "scenes/subbrute_scene.h"
#include <dolphin/dolphin.h>
#define TAG "SubBruteApp"
@@ -173,6 +174,7 @@ void subbrute_popup_closed_callback(void* context) {
int32_t subbrute_app(void* p) {
UNUSED(p);
DOLPHIN_DEED(DolphinDeedPluginStart);
SubBruteState* instance = subbrute_alloc();
view_dispatcher_attach_to_gui(
instance->view_dispatcher, instance->gui, ViewDispatcherTypeFullscreen);
@@ -196,4 +198,4 @@ int32_t subbrute_app(void* p) {
subbrute_free(instance);
return 0;
}
}