1 2 3 4 5 6 7 8 9
//! Java-parity perpetual effect interface. use crate::card::Card; pub trait PerpetualInterface { fn get_timestamp(&self) -> i64; fn apply_effect(&self, card: &mut Card); }