diff --git a/include/pd/drivers/os.hpp b/include/pd/drivers/os.hpp index 13a0782..2d922be 100755 --- a/include/pd/drivers/os.hpp +++ b/include/pd/drivers/os.hpp @@ -26,6 +26,8 @@ class PD_API Os { static u64 GetTime() { return driver->GetTime(); } static u64 GetTimeNano() { return driver->GetTimeNano(); } + static const char* GetDriverName() { return driver->GetName(); } + private: static std::unique_ptr driver; };