diff options
Diffstat (limited to 'core/src/data/mod.rs')
| -rw-r--r-- | core/src/data/mod.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/src/data/mod.rs b/core/src/data/mod.rs new file mode 100644 index 0000000..19589a2 --- /dev/null +++ b/core/src/data/mod.rs @@ -0,0 +1,10 @@ +use bincode::config; +use bincode::config::Configuration; + +pub const BINCODE_CONVERT_FAILED : Vec<u8> = Vec::new(); +pub const BINCODE_CONFIG : Configuration = config::standard(); + +pub mod controller; +pub mod game; +pub mod message; +pub mod player;
\ No newline at end of file |
