Merge branch 'master' of github.com:matteodelabre/projet-cmi
This commit is contained in:
commit
642ecb88ba
13
engine.cpp
13
engine.cpp
|
@ -3,14 +3,11 @@
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
#include <queue>
|
#include <queue>
|
||||||
|
|
||||||
Engine::Engine() : goLeftKey(false), goRightKey(false) {
|
Engine::Engine() : window(
|
||||||
// initialise et ouvre la fenêtre
|
sf::VideoMode(300, 150), "Projet CMI",
|
||||||
window.create(
|
sf::Style::Default & ~sf::Style::Resize,
|
||||||
sf::VideoMode(300, 150), "La cage de Jacob",
|
sf::ContextSettings(0, 0, 2)
|
||||||
sf::Style::Default & ~sf::Style::Resize,
|
), goLeftKey(false), goRightKey(false) {
|
||||||
sf::ContextSettings(0, 0, 2)
|
|
||||||
);
|
|
||||||
|
|
||||||
window.setVerticalSyncEnabled(true);
|
window.setVerticalSyncEnabled(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue