Removed useless use
This commit is contained in:
parent
59466243ec
commit
805e6409a1
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue