aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/graphics/Resource.hpp
blob: a1625ce487a75c587a6efba79553c1b4d85e509b (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include "Base.hpp"

namespace cru::platform::graphics {
struct IGraphFactory;

struct IGraphResource : virtual INativeResource {
  virtual IGraphFactory* GetGraphFactory() = 0;
};
}  // namespace cru::platform::graph