rework how chunks get chosen for remeshing
Addresses #70 (closed) Currently each new or changed chunk will add all its neighbours to a list so they get updated too. This leads to lots of chunks being remeshed multiple times, which is unnecessary.
I changed the use of LinkedList
to one of HashMap
which removes duplication.
Edited by Algorhythm