| 927 | } |
| 928 | |
| 929 | void UIToastNotificationManager_t::createNewSeedNotification() |
| 930 | { |
| 931 | UIToastNotification* n = UIToastNotificationManager.addNotification("*#images/ui/Main Menus/Challenges/seed_attempted64px.png"); |
| 932 | n->actionFlags |= (UIToastNotification::ActionFlags::UI_NOTIFICATION_AUTO_HIDE); |
| 933 | n->actionFlags |= (UIToastNotification::ActionFlags::UI_NOTIFICATION_CLOSE); |
| 934 | n->actionFlags |= (UIToastNotification::ActionFlags::UI_NOTIFICATION_REMOVABLE); |
| 935 | n->cardType = UIToastNotification::CardType::UI_CARD_DEFAULT; |
| 936 | n->setHeaderText(Language::get(6169)); |
| 937 | n->setMainText(Language::get(6170)); |
| 938 | n->setIdleSeconds(10); |
| 939 | } |
| 940 | |
| 941 | void UIToastNotificationManager_t::createStatisticUpdateNotification(const char* name, int currentValue, int maxValue) |
| 942 | { |
no test coverage detected