Ejemplo n.º 1
0
    // Unity


    private void Awake()
    {
        if (Instance != null)
        {
            Debug.LogError("More than one biosphere instance!");
            Destroy(this);
            return;
        }
        Instance = this;
    }
Ejemplo n.º 2
0
 public void CreateNewBiosphere()
 {
     Biosphere = new Biosphere();
 }