aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/graphics/Resource.hpp
blob: 212e5b18083ac358304a6315d7fdf8464b921fb9 (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 IPlatformResource {
  virtual IGraphFactory* GetGraphFactory() = 0;
};
}  // namespace cru::platform::graphics