blob: 8859360c205c0bb22acc886e1125acd33ae38624 (
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
 |