Removed useless use

This commit is contained in:
2018-10-04 11:39:45 +02:00
parent 59466243ec
commit 805e6409a1

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;
}