29 lines
691 B
C#
29 lines
691 B
C#
using System.Collections;
|
|
using System.Threading;
|
|
using TransportGame.Business;
|
|
using TransportGame.Model;
|
|
using TransportGame.Utils;
|
|
using UnityEngine;
|
|
|
|
public class InitializeScript : MonoBehaviour
|
|
{
|
|
// Use this for initialization
|
|
public void Start()
|
|
{
|
|
// Load configuration
|
|
Logger.Info("Loading configuration...");
|
|
ConfigurationManager.LoadConfiguration();
|
|
Logger.Info("Finished loading configuration.");
|
|
|
|
// Load biomes
|
|
Logger.Info("Loading biomes...");
|
|
BiomeManager.LoadBiomes();
|
|
Logger.Info("Finished loading biomes.");
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
}
|
|
}
|