Ejemplo n.º 1
0
        public override void StartedNewGame()
        {
            base.StartedNewGame();

            RandomPlacesHandler = new RandomPlacesHandler();

            RandomPlacesHandler.InitPlaces();
        }
Ejemplo n.º 2
0
        public override void LoadedGame()
        {
            base.LoadedGame();

            if (RandomPlacesHandler == null)
            {
                RandomPlacesHandler = new RandomPlacesHandler();

                RandomPlacesHandler.InitPlaces();
            }
        }