/// <summary>
 /// Create an instance of the placeable object.
 /// </summary>
 public void SpawnObject()
 {
     if (objMgrScript.CheckCanSpawn(placeable))
     {
         Instantiate(placeable);
     }
     // TODO: If it cannot be spawned notify the user why not.
 }