Example #1
0
        protected static void InitializeStartingScene(SceneCreater sceneCreater, LocationCreater locationCreater)
        {
            var startingLocation = locationCreater.CreateLocation(Locations.Kalimdor);

            startingLocation.LocationObjects.Add(startingLocation.LocationFacotry.CreateEnemyEntity());
            currentScene = sceneCreater.CreateScene(GameSceneType.Town, playerHero, startingLocation);
        }