Skip to content

Instantly share code, notes, and snippets.

@wowbroforce
Created June 8, 2015 11:56
Show Gist options
  • Save wowbroforce/d06a86b1e769f7b3a467 to your computer and use it in GitHub Desktop.
Save wowbroforce/d06a86b1e769f7b3a467 to your computer and use it in GitHub Desktop.
using UnityEngine;
using System.Collections;
public static class GameObjectExtensions {
public static GameObject Instantiate(this Object prefab) {
return GameObject.Instantiate (prefab) as GameObject;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment