blob: d274ae16e1e0169bcfd7c6cd9ad9ac8befa3c539 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Base.h"
#include "cru/base/Base.h"
namespace cru::platform::graphics::direct2d {
template <typename TInterface>
struct CRU_WIN_GRAPHICS_DIRECT_API IComResource : virtual Interface {
virtual TInterface* GetComInterface() const = 0;
};
} // namespace cru::platform::graphics::direct2d
|