1use crate::*; 2 3/// An event where a skill is activated by a specific entity. 4#[derive(Debug, Clone)] 5pub struct SkillTriggerEvent<K>(pub Entity, pub K);