CustomNetworkManager.getRandomPosition C# (CSharp) Method

getRandomPosition() public method

public getRandomPosition ( ) : void
return void
    public void getRandomPosition()
    {
        int randomIndex = Random.Range (0, spawnPool.Count);
        spawnPosition = spawnPool[randomIndex];
        //spawnPool.RemoveAt (randomIndex);
    }