blob: bd4702565342610fa6cef19e0a3f710b11ab6b72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include "../native_resource.hpp"
namespace cru::platform::graph {
class Font : public NativeResource {
protected:
Font() = default;
public:
Font(const Font& other) = delete;
Font& operator=(const Font& other) = delete;
Font(Font&& other) = delete;
Font& operator=(Font&& other) = delete;
~Font() override = default;
};
} // namespace cru::platform::graph
|