Browse Source

Remove redundant extern crate calls from chapter 3 body.

Herbert Wolverson 4 years ago
parent
commit
97cc9e0a07
1 changed files with 0 additions and 2 deletions
  1. 0 2
      book/src/chapter_3.md

+ 0 - 2
book/src/chapter_3.md

@@ -157,9 +157,7 @@ Run the program (`cargo run`) now, and you have a player in a map - and can move
 The full program now looks like this:
 
 ```rust
-extern crate rltk;
 use rltk::{Console, GameState, Rltk, RGB, VirtualKeyCode};
-extern crate specs;
 use specs::prelude::*;
 #[macro_use]
 extern crate specs_derive;