aboutsummaryrefslogtreecommitdiff
path: root/core/src/data/controller/structs.rs
blob: c6fdd31d490ec64ca2dbdc6b92483e1562538037 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
use crate::data::player::structs::Player;

/// Controller-side Data
/// Describes the basic information of the controller side
#[derive(Default)]
pub struct ControllerData {

    /// Player bound to the controller side
    pub(crate) player: Player
}