Prevent window resizing
This commit is contained in:
parent
c2e3cd1679
commit
7bb946a805
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
#include <SFML/System/Clock.hpp>
|
||||
#include <SFML/System/Vector2.hpp>
|
||||
#include <SFML/Window/Keyboard.hpp>
|
||||
#include <SFML/Window/WindowStyle.hpp>
|
||||
#include <iostream>
|
||||
#include <iterator>
|
||||
#include <string>
|
||||
|
@ -172,7 +173,7 @@ int main()
|
|||
{
|
||||
srand(time(NULL));
|
||||
|
||||
sf::RenderWindow window(sf::VideoMode(WINDOW_WIDTH, WINDOW_HEIGHT), "elnutris");
|
||||
sf::RenderWindow window(sf::VideoMode(WINDOW_WIDTH, WINDOW_HEIGHT), "elnutris", sf::Style::Close);
|
||||
window.setFramerateLimit(60);
|
||||
|
||||
Block block;
|
||||
|
|
Loading…
Add table
Reference in a new issue