Skip to main content

manabrew_engine/ability/effects/
blank_line_effect.rs

1//! BlankLine — no-op formatting effect used in card scripts.
2
3use super::EffectContext;
4use manabrew_engine_macros::spell_effect;
5
6#[spell_effect(BlankLineEffect)]
7fn resolve(_ctx: &mut EffectContext, _sa: &crate::spellability::SpellAbility) {}