basic sdl window init

This commit is contained in:
georgemoralis 2023-09-12 19:39:08 +03:00
parent c2453f6ae9
commit 8954a35eec
5 changed files with 73 additions and 10 deletions

View file

@ -0,0 +1,9 @@
#pragma once
#include <types.h>
namespace HLE::Libs::Graphics {
struct GraphicCtx {
u32 screen_width = 0;
u32 screen_height = 0;
};
} // namespace HLE::Libs::Graphics