engine/include/gfx_device.hpp
2022-09-17 01:22:35 +01:00

26 lines
285 B
C++

#pragma once
#include "engine_api.h"
#include "engine.hpp"
#include <SDL_video.h>
#include <memory>
namespace engine::gfx {
struct ENGINE_API Device {
Device(AppInfo appInfo, SDL_Window* window);
~Device();
private:
class Impl;
std::unique_ptr<Impl> pimpl;
};
}