// Update is called once per frame
 void Update()
 {
     transform.Translate(direction * spellStats.GetProjectileSpeed());
 }
 // Use this for initialization
 void Start()
 {
     spellStats      = GetComponent <SpellStats> ();
     projectileSpeed = spellStats.GetProjectileSpeed();
 }