memory setup
This commit is contained in:
15
src/engine/Window.h
Normal file
15
src/engine/Window.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
#include "Shared.h"
|
||||
#include <SDL3/SDL.h>
|
||||
|
||||
class EngineWindow
|
||||
{
|
||||
public:
|
||||
SDL_Window* Window;
|
||||
bool CloseRequested = false;
|
||||
|
||||
public:
|
||||
void Startup(SharedWindowData& Shared);
|
||||
void Update(SharedWindowData& Shared);
|
||||
void Shutdown();
|
||||
};
|
||||
Reference in New Issue
Block a user