restructure to allow cargo tests

This commit is contained in:
Crispy 2025-03-15 21:00:20 +01:00
parent fa10b38f99
commit 7574ec20f5
10 changed files with 50 additions and 23 deletions

View file

@ -1,11 +1,11 @@
use crate::TILE_TEXTURE_SIZE;
use crate::{draw_scaled_texture, Textures};
use super::tile::*;
use super::Pos;
use super::PosInt;
use raylib::prelude::*;
use super::{tile::*, Pos, PosInt};
use crate::{
theme::TILE_TEXTURE_SIZE,
util::{draw_scaled_texture, Textures},
};
#[derive(Debug, Clone, PartialEq)]
pub struct Board {
tiles: Vec<Tile>,