use super::*; /// Create figher game that renders to another subset of the viewport /// /// Focus on a single fighter class with a single enemy (blob) to start with /// Once damage both ways is tight, add multiple enemies as assets pub struct FighterPlugin; impl Plugin for FighterPlugin { fn build(&self, app: &mut App) { app; } }