print controller input

This commit is contained in:
2019-07-31 19:29:54 +02:00
parent 409bbde0d8
commit 205536ce55
4 changed files with 27 additions and 19 deletions

View File

@@ -2,10 +2,11 @@ use serde_derive::{Serialize, Deserialize};
use toml;
use std::fs;
#[derive(Debug, Serialize, Deserialize)]
#[derive(Debug, Serialize, Deserialize, Clone, Copy)]
pub struct LogConfig {
pub input: bool,
pub input_events: bool,
pub vulkan_validation_layers: bool,
pub mesh_load_info: bool,
}
impl LogConfig {