コード例 #1
0
ファイル: Program.cs プロジェクト: thestig999/LunchHourGames
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (LunchHourGames game = new LunchHourGames())
     {
         game.Run();
     }
 }
コード例 #2
0
ファイル: GameFlow.cs プロジェクト: thestig999/LunchHourGames
 public GameFlow(LunchHourGames lhg)
     : base(lhg)
 {
     this.lhg      = lhg;
     screenManager = lhg.MyScreenManager;
     this.party    = new Party(lhg);
 }
コード例 #3
0
 public GameEntity(LunchHourGames lhg, EntityType entityType, String referenceName, String displayName)
     : base(lhg)
 {
     this.entityType    = entityType;
     this.lhg           = lhg;
     this.referenceName = referenceName;
     this.displayName   = displayName;
 }
コード例 #4
0
        public GameFactory(LunchHourGames lhg)
        {
            this.lhg          = lhg;
            this.gameDocument = new XmlDocument();
            string xmlContent = "Content/Xml/game.xml";

            gameDocument.Load(xmlContent);

            //combatFactory = new CombatFactory(lhg);
        }
コード例 #5
0
        //private Song introSong;
        //private Song combatSong;

        public SoundSystem(LunchHourGames lhg)
        {
        }
コード例 #6
0
 public AssetManager(LunchHourGames lhg)
 {
     this.lhg = lhg;
 }