mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2025-01-25 18:53:12 -03:00
16 lines
410 B
C
16 lines
410 B
C
|
#pragma once
|
||
|
#include "../utils/types.h"
|
||
|
|
||
|
#define MAINMENU_AMOUNT 6
|
||
|
#define CREDITS_MESSAGE "Tegraexplorer, made by:\nSuch Meme, Many Skill\n\nProject based on:\nLockpick_RCM\nHekate\n\nCool people:\nshchmue\ndennthecafebabe\nDax"
|
||
|
|
||
|
typedef struct _menu_item {
|
||
|
char name[50];
|
||
|
u32 color;
|
||
|
short internal_function;
|
||
|
short property;
|
||
|
} menu_item;
|
||
|
|
||
|
menu_item mainmenu[MAINMENU_AMOUNT];
|
||
|
|
||
|
void te_main();
|