blob: ab1b8de68bd4b0b9ebf28d6c0b00ccfbe0d0db22 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include "Base.h"
namespace cru::platform::graphics {
struct IGraphicsFactory;
struct CRU_PLATFORM_GRAPHICS_API IGraphicsResource : virtual IPlatformResource {
virtual IGraphicsFactory* GetGraphicsFactory() = 0;
};
} // namespace cru::platform::graphics
|