// Copyright (c) Microsoft Corporation and Contributors. // Licensed under the MIT License. #pragma once #include "App.xaml.g.h" namespace winrt::Redwax_SignText::implementation { struct App : AppT { App(); void OnLaunched(Microsoft::UI::Xaml::LaunchActivatedEventArgs const&); private: winrt::Windows::System::DispatcherQueueController mDQC{ nullptr }; winrt::Microsoft::UI::Xaml::Window window{ nullptr }; }; }