basic wands and wresting

This commit is contained in:
Llywelwyn 2023-07-12 11:40:56 +01:00
parent 4cd4b638ec
commit 24417fbb05
5 changed files with 96 additions and 22 deletions

View file

@ -200,6 +200,12 @@ pub struct WantsToUseItem {
#[derive(Component, Debug, Serialize, Deserialize, Clone)]
pub struct Consumable {}
#[derive(Component, Debug, ConvertSaveload)]
pub struct Wand {
pub uses: i32,
pub max_uses: i32,
}
#[derive(Component, Debug, Serialize, Deserialize, Clone)]
pub struct Destructible {}