GameWorldControl.CheckSolCount C# (CSharp) Method

CheckSolCount() public method

public CheckSolCount ( ) : void
return void
    void CheckSolCount()
    {
        if (sol > 1200 && aeonurSpawned != true)
        {
            aeonurSpawned = true;
            aeonurInstance = Instantiate(aeonur, aeonurSpawnPoint.position, aeonurSpawnPoint.rotation) as GameObject;
        }
    }
}