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 {
pub mod board;
pub mod piece;
pub mod networking;
}
mod models;
use models::{player, board, piece, networking};
use clap::{Arg, App, SubCommand};
fn main() {

View File

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

View File

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