| 615 | } |
| 616 | |
| 617 | UIToastNotification* UIToastNotificationManager_t::addNotification(const char* image) |
| 618 | { |
| 619 | if ( !bIsInit ) |
| 620 | { |
| 621 | init(); |
| 622 | } |
| 623 | |
| 624 | allNotifications.emplace_back(getImage(image)); |
| 625 | auto& notification = allNotifications.back(); |
| 626 | return ¬ification; |
| 627 | } |
| 628 | |
| 629 | void UIToastNotificationManager_t::createEpicLoginNotification() |
| 630 | { |
no outgoing calls
no test coverage detected