summaryrefslogtreecommitdiff
path: root/ui/mainWindow.h
blob: d2de9b35fbfad8298f55aab8ba0b88fe8714785f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "window.h"
#include <cstddef>

class MainWindow : public Window {
public:
	MainWindow(ScreenAbsCoord size, const char * title, Uint32 flags = SDL_WINDOW_RESIZABLE | SDL_WINDOW_OPENGL);
	~MainWindow() override;

	NO_MOVE(MainWindow);
	NO_COPY(MainWindow);
};