10 lines
141 B
Rust
10 lines
141 B
Rust
use bevy::prelude::*;
|
|
|
|
pub struct ShipCamPlugin;
|
|
|
|
impl Plugin for ShipCamPlugin {
|
|
fn build(&self, _app: &mut App) {
|
|
todo!()
|
|
}
|
|
}
|