~starkingdoms/starkingdoms

ref: d5ae439e152b678cacc34b43f9090e33c0b9cb20 starkingdoms/crates/unified/src/server/heat/conduction.rs -rw-r--r-- 189 bytes
d5ae439e — core fix: actually install the cli (2) a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
use crate::{attachment::Peer, prelude::*};

pub fn heat_conduction_plugin(app: &mut App) {
    app.add_systems(Update, propagate_heat);
}

fn propagate_heat(
    peers: Query<&Peer>
) {

}