Maybe fix imports?

This commit is contained in:
Felix Albrigtsen 2021-10-20 13:41:13 +02:00
parent fef3d93f97
commit ba7b52364d
3 changed files with 4 additions and 6 deletions

View File

@ -1,8 +1,5 @@
mod models { mod models;
pub mod board; use models::{player, board, piece, networking};
pub mod piece;
pub mod networking;
}
use clap::{Arg, App, SubCommand}; use clap::{Arg, App, SubCommand};
fn main() { fn main() {

View File

@ -1,5 +1,5 @@
pub mod board; pub mod board;
// pub mod networking; pub mod networking;
pub mod piece; pub mod piece;
pub mod player; pub mod player;

View File

@ -2,6 +2,7 @@ use std::fmt;
use super::player::Player; use super::player::Player;
#[derive(Clone)] #[derive(Clone)]
pub enum DjedDirection { pub enum DjedDirection {
NorthWest, NorthWest,