aboutsummaryrefslogtreecommitdiff
path: root/src/engine/graphics/window.hpp
blob: c9a9c70e52eb952271ddc6e70f1acc3f0773bba1 (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]] Bounds size() const noexcept override;
};