blob: 6b3155275a00392b807726ce76aeff95e9614636 (
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
|