aboutsummaryrefslogtreecommitdiff
path: root/src/engine/graphics/window.hpp
blob: 9284e5e27d0ba039cac13baf0ec06576faad08d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "interfaces/window.hpp"

#include "engine/data/bounds.hpp"

#include <yacppdic/auto_wirable.hpp>

class Window : public IWindow, public yacppdic::AutoWirable<IWindow, Window>
{
public:
	Window() noexcept = default;

	[[nodiscard]] auto size() const noexcept -> Bounds override;
};