Static helper that exposes all MapDefinition resources. It provides a single property All that returns ResourceLibrary.GetAll<MapDefinition>().
namespace KOTH;
public static class MapSystem
{
public static IEnumerable<MapDefinition> All
{
get
{
return ResourceLibrary.GetAll<MapDefinition>();
}
}
}