1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/game/window.hpp

19 lines
372 B
C++
Raw Normal View History

2024-03-18 15:41:46 -03:00
#ifndef XNA_GAME_WINDOW_HPP
#define XNA_GAME_WINDOW_HPP
#include "../enums.hpp"
#include "../common/rectangle.hpp"
namespace xna {
2024-03-21 16:01:47 -03:00
class IGameWindow {
2024-03-18 15:41:46 -03:00
public:
2024-03-21 16:01:47 -03:00
virtual ~IGameWindow(){}
2024-03-18 15:41:46 -03:00
2024-03-21 16:01:47 -03:00
virtual String Title() const = 0;
virtual void Title(String const& title) = 0;
virtual Rectangle ClientBounds() const = 0;
virtual intptr_t Handle() const = 0;
2024-03-18 15:41:46 -03:00
};
}
#endif