Removed useless use

This commit is contained in:
Thomas Forgione 2018-10-04 11:39:45 +02:00
parent 59466243ec
commit 805e6409a1
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
1 changed files with 1 additions and 6 deletions

View File

@ -1,10 +1,7 @@
extern crate sfml;
extern crate rusty;
use std::time::{
Instant,
Duration,
};
use std::time::Instant;
use sfml::window::{
Event,
@ -48,7 +45,6 @@ fn main() {
_ => (),
}
scene.manage_event(&event);
}
@ -65,7 +61,6 @@ fn main() {
// Display and manage the frame rate
renderer.display();
if ! running {
break;
}