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 fdee1c330e - Show all commits

View file

@ -24,6 +24,7 @@ impl Plugin for OwnershipPlugin {
#[derive(Resource)]
pub struct OwnershipColorContrast(pub f32);
/// Init resources related to the ownership of the tiles.
fn setup_ownership_resources(mut commands: Commands) {
commands.insert_resource(OwnershipColorContrast(0.4));
}