Example #1
0
    public bool Fill(ControlledProjectile projectile, Spell origin_spell)
    {
        if (IsAvailable())
        {
            this.projectile = projectile;
            this.origin_spell = origin_spell;
            projectile.SetManaSlot(this);
            return true;
        }

        return false;
    }