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

#include "DI/auto_wirable.hpp"
#include "interfaces/window.hpp"

#include "engine/data/bounds.hpp"

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

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