example item

This commit is contained in:
2025-09-12 18:04:03 +01:00
parent ee7ac39ad5
commit 8a5884c6d5
19 changed files with 1009 additions and 53 deletions
+3 -1
View File
@@ -1,12 +1,13 @@
use bevy::prelude::*;
use bevy_rand::prelude::*;
use crate::entities::livestock::pig::pig_drop_system;
mod camera;
mod constants;
mod cursor;
mod entities;
mod game;
mod item;
mod world;
fn main() {
@@ -54,5 +55,6 @@ fn main() {
cursor::move_cursor,
),
)
.add_systems(Update, pig_drop_system)
.run();
}