tomassedovic / tcod-rs

Rust bindings for libtcod 1.6.3 (the Doryen library/roguelike toolkit)
Do What The F*ck You Want To Public License
229 stars 45 forks source link

Added Send to Map #286

Closed abesto closed 5 years ago

abesto commented 5 years ago

In the vein of #274, this is basically a lighter version of #265 until #259 is "properly" resolved. (User code will still need to Arc<Mutex<Map>>, which I think is an OK trade-off at this point)

Use-case: using Specs, I want to be a good little boy-scout, and have a dedicated FovSystem update a Map resource that is then read by the RenderSystem.

tomassedovic commented 5 years ago

Thanks!