/* * GenericBaseApplication.cs * Authors: August Zinsser * * Copyright Matthew Belmonte 2007 */ using System; using System.Collections.Generic; using System.Text; namespace tAC_Engine { /// /// Provides communication between a game manager and a specific game /// public class GenericBaseApplication { protected static GenericGameManager mGameManager; protected static GenericGame mGame; protected static ParallelPortPanel mOutputPanel; public static GenericGameManager GameManager { set { mGameManager = value; } get { return mGameManager; } } public static ParallelPortPanel OutputPanel { set { mOutputPanel = value; } get { return mOutputPanel; } } } }