aboutsummaryrefslogtreecommitdiff
path: root/include/cru/win/graphics/direct/ComResource.hpp
blob: 34ea39edbcf1eda03763cfeb23ba0877513c07d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#include "../../WinPreConfig.hpp"

#include "cru/common/Base.hpp"

namespace cru::platform::graphics::win::direct {
template <typename TInterface>
struct IComResource : virtual Interface {
  virtual TInterface* GetComInterface() const = 0;
};
}  // namespace cru::platform::graphics::win::direct