blob: 72cfaf527eebe669c60694cce89f8810c8d4eb07 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include "cru/common/Base.hpp"
#include <string_view>
namespace cru::platform {
struct INativeResource : virtual Interface {
virtual std::string_view GetPlatformId() const = 0;
};
} // namespace cru::platform
|