mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* Predict two-way levers Annoys me the rare occasions I touch cargo. Doesn't predict the signal but at least the lever responds immediately. * space * a (cherry picked from commit 05a2ddff1cc415c3bdf1e15ef3a2c953bcb5384b)
8 lines
254 B
C#
8 lines
254 B
C#
using Content.Server.DeviceNetwork;
|
|
using Content.Shared.DeviceNetwork;
|
|
|
|
namespace Content.Server.DeviceLinking.Events;
|
|
|
|
[ByRefEvent]
|
|
public readonly record struct SignalReceivedEvent(string Port, EntityUid? Trigger = null, NetworkPayload? Data = null);
|