Trait andiskaz::tile::Updater[][src]

pub trait Updater {
    fn update(self, tile: &mut Tile);
}
Expand description

A function that updates a Tile.

Required methods

Receives a mutable reference to a tile and updates it.

Implementors