Make funding allocation computer more configurable (#36790)
* Make funding allocation computer more configurable * admin logging * unused * ccvar enabled --------- Co-authored-by: ScarKy0 <scarky0@onet.eu>
This commit is contained in:
committed by
GitHub
parent
1197d9b038
commit
907f4b39cd
@@ -24,10 +24,14 @@ public sealed partial class FundingAllocationConsoleComponent : Component
|
||||
public sealed class SetFundingAllocationBuiMessage : BoundUserInterfaceMessage
|
||||
{
|
||||
public Dictionary<ProtoId<CargoAccountPrototype>, int> Percents;
|
||||
public double PrimaryCut;
|
||||
public double LockboxCut;
|
||||
|
||||
public SetFundingAllocationBuiMessage(Dictionary<ProtoId<CargoAccountPrototype>, int> percents)
|
||||
public SetFundingAllocationBuiMessage(Dictionary<ProtoId<CargoAccountPrototype>, int> percents, double primaryCut, double lockboxCut)
|
||||
{
|
||||
Percents = percents;
|
||||
PrimaryCut = primaryCut;
|
||||
LockboxCut = lockboxCut;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user