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