DatPage.h 293 B

12345678910111213141516171819
  1. #pragma once
  2. #include "DatPage.g.h"
  3. namespace winrt::Maple_App::implementation
  4. {
  5. struct DatPage : DatPageT<DatPage>
  6. {
  7. DatPage();
  8. };
  9. }
  10. namespace winrt::Maple_App::factory_implementation
  11. {
  12. struct DatPage : DatPageT<DatPage, implementation::DatPage>
  13. {
  14. };
  15. }