12 lines
215 B
C++
12 lines
215 B
C++
#pragma once
|
|
|
|
#include <Graphics/GraphicsConfig.h>
|
|
|
|
// Graphics Interface
|
|
namespace Juliet
|
|
{
|
|
struct GraphicsDevice;
|
|
|
|
extern GraphicsDevice* CreateGraphicsDevice(GraphicsConfig config);
|
|
} // namespace Juliet
|