SpawnMob()

Found in:

private GameObject SpawnMob(int mobType)
    {
        GameObject mobDummy = null;

        if (mobType < enemyTypes.Count & mobType >= 0)
        {
            mobDummy = enemyTypes[mobType].gameObject;
        }

        return mobDummy;
    }


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *