A modded EditSaber for making beat saber maps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
295 B

  1. #include "WindowsFileUtilityPrivatePCH.h"
  2. class FWindowsFileUtility : public IWindowsFileUtility
  3. {
  4. /** IModuleInterface implementation */
  5. virtual void StartupModule() override
  6. {
  7. }
  8. virtual void ShutdownModule() override
  9. {
  10. }
  11. };
  12. IMPLEMENT_MODULE(IWindowsFileUtility, WindowsFileUtility)