Files
OpenRA/OpenRa.Game/Shroud.cs
2010-01-05 16:05:20 +13:00

18 lines
260 B
C#

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)
{
}
}
}