rust-sokoban
rust-sokoban copied to clipboard
Use compact imports
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)