Added terrible fog-of-war

This commit is contained in:
Anuken
2018-06-24 00:09:00 -04:00
parent 0267ad574f
commit 77a63a39ad
9 changed files with 123 additions and 23 deletions
@@ -34,11 +34,12 @@ public class EventType {
void handle();
}
/**Called from the logic thread. Do not call graphics here!*/
/**Called from the logic thread. Do not access graphics here!*/
public interface TileChangeEvent extends Event{
void handle(Tile tile);
}
//TODO unimplemented; remove?
public interface TileRemoveEvent extends Event{
void handle(Tile tile, Team oldTeam);
}