/* * GenericResources.cs * Authors: August Zinsser * * Copyright Matthew Belmonte 2007 */ using System.Collections.Generic; namespace tAC_Engine { /// /// The framework for storing resources for games /// public abstract class GenericResources { protected static List mList = new List(); public static List List { get { return mList; } } } }