Initial commit

Flemme
This commit is contained in:
2025-01-08 19:55:38 -05:00
parent e45890ef24
commit abec0f6ef2
128 changed files with 92284 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#pragma once
#include <Graphics/GraphicsConfig.h>
// Graphics Interface
namespace Juliet::Graphics
{
// Add functions to create windows, device, attach to the window etc...
} // namespace Juliet::Graphics

View File

@@ -0,0 +1,14 @@
#pragma once
namespace Juliet
{
enum class RendererType
{
DX12 = 0
};
struct GraphicsConfig
{
RendererType Renderer = RendererType::DX12;
};
}