1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/inc/game/window.hpp
2024-05-18 16:22:00 -03:00

19 lines
371 B
C++

#ifndef XNA_GAME_WINDOW_HPP
#define XNA_GAME_WINDOW_HPP
#include "../enums.hpp"
#include "../common/numerics.hpp"
namespace xna {
class IGameWindow {
public:
virtual ~IGameWindow(){}
virtual String Title() const = 0;
virtual void Title(String const& title) = 0;
virtual Rectangle ClientBounds() const = 0;
virtual intptr_t Handle() const = 0;
};
}
#endif