Add the ownership system #96

Merged
raphael merged 8 commits from ownership-system into main 2024-04-03 15:44:19 +00:00
Showing only changes of commit 9b7c022915 - Show all commits

View file

@ -13,8 +13,8 @@ pub struct OwnershipPlugin;
impl Plugin for OwnershipPlugin { impl Plugin for OwnershipPlugin {
fn build(&self, app: &mut App) { fn build(&self, app: &mut App) {
app.add_systems(Update, render_ownership) app.add_systems(Update, render_ownership);
.add_systems(Startup, setup_ownership_resources); app.add_systems(Startup, setup_ownership_resources);
} }
} }