using UnityEngine;
using System.Collections;
public class InstantiateHUDText : MonoBehaviour
{
public GameObject hudText;
public GameObject parent;
// Use this for initialization
void Start ()
{
hudText = NGUITools.AddChild(parent);
}
// Update is called once per frame
void Update ()
{
}
}