Maybe fix imports?
This commit is contained in:
parent
fef3d93f97
commit
ba7b52364d
|
@ -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() {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
pub mod board;
|
||||
// pub mod networking;
|
||||
pub mod networking;
|
||||
pub mod piece;
|
||||
pub mod player;
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ use std::fmt;
|
|||
|
||||
use super::player::Player;
|
||||
|
||||
|
||||
#[derive(Clone)]
|
||||
pub enum DjedDirection {
|
||||
NorthWest,
|
||||
|
|
Loading…
Reference in New Issue