bevy_fpc_core 0.1.3

Core features for `bevy_fpc`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core features for `bevy_fpc`

use bevy::prelude::*;

pub mod angular;
pub mod config;
pub mod incarnation;
pub mod linear;

/// Marker used for embodying the associated first person controller.
#[derive(Component, Default)]
pub struct Player;