framework.h 318 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include <Windows.h>
  3. #include <string>
  4. namespace TLAC
  5. {
  6. class framework
  7. {
  8. private:
  9. static std::string *moduleDirectory;
  10. public:
  11. static bool inputDisable;
  12. static HWND DivaWindowHandle;
  13. static HMODULE Module;
  14. static std::string GetModuleDirectory();
  15. static RECT GetWindowBounds();
  16. };
  17. }