16 lines
266 B
C++
16 lines
266 B
C++
#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();
|
|
};
|