aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/window.hpp
blob: 6fc56e977e0faf8d471b657e9129ca06c4c34bbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "engine/data/bounds.hpp"

// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
class IWindow
{
public:
	virtual ~IWindow() noexcept = default;

	[[nodiscard]] virtual auto size() const noexcept -> Bounds = 0;
};