aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/graph/resource.hpp
blob: 255865ebfb1280ad3718eb9b9750d1b40be90047 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include "base.hpp"

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

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