iolivia / rust-sokoban

Rust Sokoban book and code samples
https://sokoban.iolivia.me
MIT License
155 stars 29 forks source link

Use compact imports #80

Open iolivia opened 4 years ago

iolivia commented 4 years ago

Example:

use specs::NullStorage;
use specs::WriteStorage;

should be

use specs::{NullStorage, WriteStorage};

Might make sense to do at the same time as #79 to avoid having to change the line numbers twice. Or wait for anchors to be merged (#75 #46)