You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
350 B
Rust
14 lines
350 B
Rust
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;
|
|
}
|
|
}
|