public class MyGrid : UIGrid
{
// Use this for initialization
protected override void Start()
{
base.Start();
}
// Update is called once per frame
protected override void Update ()
{
base.Update();
}
public virtual void CardDroppedIntoGrid(GameObject gObject)
{
}
}