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

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

struct IGraphicsResource : virtual IPlatformResource {
  virtual IGraphicsFactory* GetGraphicsFactory() = 0;
};
}  // namespace cru::platform::graphics