This commit is contained in:
nora 2023-04-17 21:53:17 +02:00
parent 31ab20d9f3
commit 820d1079de
4 changed files with 0 additions and 17 deletions

View file

@ -1,2 +0,0 @@
#[derive(Default, Debug)]
pub(crate) struct Input {}

View file

@ -1,6 +0,0 @@
use egui_inspect::derive::Inspect;
#[derive(Debug, Inspect)]
pub(crate) struct Inventory {}
#[derive(Debug, Inspect)]
pub(crate) struct ItemDb {}

View file

@ -3,15 +3,11 @@ mod command;
mod debug;
mod game;
mod graphics;
mod input;
mod inventory;
mod math;
mod player;
mod res;
mod texture_atlas;
mod tiles;
mod world;
mod worldgen;
use app::App;
use clap::Parser;
#[derive(Parser)]

View file

@ -1,5 +0,0 @@
use egui_inspect::derive::Inspect;
use serde::{Deserialize, Serialize};
#[derive(Debug, Inspect, Serialize, Deserialize)]
pub(crate) struct Player {}