This repository has been archived on 2023-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
mine-sweep-SDL2/include/window.hpp

17 lines
309 B
C++

#pragma once
#include "pch.hpp"
inline auto WindowDestroy = [](SDL_Window* window) {
SDL_DestroyWindow(window);
};
class Window final {
public:
friend class Renderer;
Window(const std::string& title, int w, int h);
private:
std::unique_ptr<SDL_Window, decltype(WindowDestroy)> window_;
};