#pragma once #include "Base.h" #include #include namespace cru::platform { struct CRU_PLATFORM_API IPlatformResource : virtual Interface { virtual std::string GetPlatformId() const = 0; virtual std::string GetDebugString() { return {}; } }; } // namespace cru::platform