Initial GpsSatellite support
This commit is contained in:
@@ -26,6 +26,20 @@ namespace OpenRa.Game
|
||||
|
||||
dirty = true;
|
||||
}
|
||||
|
||||
public void RevealAll()
|
||||
{
|
||||
for (int x = 0; x < 128; x++)
|
||||
for (int y = 0; y < 128; y++)
|
||||
explored[x, y] = true;
|
||||
}
|
||||
|
||||
public void HideAll()
|
||||
{
|
||||
for (int x = 0; x < 128; x++)
|
||||
for (int y = 0; y < 128; y++)
|
||||
explored[x, y] = false;
|
||||
}
|
||||
|
||||
Sprite ChooseShroud(int i, int j)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user