#ifndef U32BACKEND_HPP #define U32BACKEND_HPP #include #include class PlatformBackend { public: std::tuple getCursor(); DWORD pid(); static PlatformBackend &inst() { static PlatformBackend inst; return inst; } }; #endif // U32BACKEND_HPP