initial shroud support

This commit is contained in:
Chris Forbes
2010-01-05 16:05:20 +13:00
parent 512e56aec7
commit 27b2d20cab
3 changed files with 25 additions and 9 deletions

17
OpenRa.Game/Shroud.cs Normal file
View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using IjwFramework.Types;
namespace OpenRa.Game
{
class Shroud
{
bool[,] explored = new bool[128, 128];
public void Explore(Actor a)
{
}
}
}