proto_rts/Assets/Scripts/Team.cs

10 lines
297 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
// TODO: this is probably the least final piece of code in this project.
public static class Team
{
public static List<Unit> AllUnits = new List<Unit>();
public static List<Building> AllBuildings = new List<Building>();
public static int Minerals;
}