Температурные пушки (#90)
* - add: Temperature guns. * - tweak: Change cryo sting slowdown. * - tweak: Tempgun tweaks. * - add: Hardsuit temperature adjustment system.
This commit is contained in:
@@ -13,3 +13,17 @@ public sealed class ModifyChangedTemperatureEvent : EntityEventArgs, IInventoryR
|
||||
TemperatureDelta = temperature;
|
||||
}
|
||||
}
|
||||
|
||||
// WD START
|
||||
public sealed class AdjustTemperatureEvent : EntityEventArgs, IInventoryRelayEvent
|
||||
{
|
||||
public SlotFlags TargetSlots => ~SlotFlags.POCKET;
|
||||
|
||||
public float Temperature;
|
||||
|
||||
public AdjustTemperatureEvent(float temperature)
|
||||
{
|
||||
Temperature = temperature;
|
||||
}
|
||||
}
|
||||
// WD END
|
||||
|
||||
Reference in New Issue
Block a user