manabrew-engine 0.4.1

Magic: The Gathering rules engine — a Rust port of Forge
Documentation
1
2
3
4
5
6
7
//! BlankLine — no-op formatting effect used in card scripts.

use super::EffectContext;
use manabrew_engine_macros::spell_effect;

#[spell_effect(BlankLineEffect)]
fn resolve(_ctx: &mut EffectContext, _sa: &crate::spellability::SpellAbility) {}