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