| 1234567891011121314 |
- #pragma once
- #include "App.xaml.g.h"
- namespace winrt::Maple_App::implementation
- {
- struct App : AppT<App>
- {
- App();
- void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs const&);
- fire_and_forget OnSuspending(IInspectable const&, Windows::ApplicationModel::SuspendingEventArgs const&);
- void OnNavigationFailed(IInspectable const&, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs const&);
- };
- }
|