这里还能水一点来着(

This commit is contained in:
shenjack 2023-09-13 00:22:51 +08:00
parent 90edce16f9
commit a7651ab240
Signed by: shenjack
GPG Key ID: 7B1134A979775551
2 changed files with 7 additions and 3 deletions

View File

@ -655,7 +655,6 @@ pub mod ship {
}
Err(e) => {
println!("{:?}", e);
// println!("{:?}", e.provide());
}
}
Ok(true)

View File

@ -1316,12 +1316,17 @@ pub mod dr {
}
pub struct EngineData {
/// 推力大小if p_type==engine
pub power: f64,
/// 消耗速率if p_type==engine
pub consumption: f64,
pub size: f64,
/// 大小if p_type==engine
// pub size: f64,
/// 转向范围if p_type==engine
pub turn: f64,
/// 燃料类型if p_type==engine
pub fuel_type: f64,
pub throttle_exponential: f64,
// pub throttle_exponential: f64,
}
pub trait DRPartTypeAttrTrait {