コード例 #1
0
ファイル: Window.cpp プロジェクト: cristicbz/AdventureMiner
	void Window::setSize(unsigned width, unsigned height) {
		log << "Resizing to (" << width << ", " << height << ").\n";
		VideoMode newMode = mode_;
		newMode.setSize(width,height);
		setVideoMode(newMode);		
	}