Maybe fix imports?
This commit is contained in:
parent
fef3d93f97
commit
ba7b52364d
|
@ -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() {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue