Fix possess bug, remove commented code, drain controller events

This commit is contained in:
Imbris
2019-10-20 20:59:53 -04:00
committed by Imbris
parent 966b2bfbff
commit a200dafd45
5 changed files with 5 additions and 5 deletions

View File

@ -30,6 +30,7 @@ pub struct ControllerInputs {
#[derive(Clone, Debug, Default, PartialEq, Serialize, Deserialize)]
pub struct Controller {
pub inputs: ControllerInputs,
// TODO: consider SmallVec
pub events: Vec<ControlEvent>,
}