mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
* cleanup * fix fixtures * prediction * fix test * review * fix svalinn visuals * fix chargers * fix portable recharger and its unlit visuals * fix borgs * oomba review * fix examination prediction
11 lines
328 B
C#
11 lines
328 B
C#
namespace Content.Shared.Kitchen;
|
|
|
|
/// <summary>
|
|
/// Raised on an entity when it is inside a microwave and it starts cooking.
|
|
/// </summary>
|
|
public sealed class BeingMicrowavedEvent(EntityUid microwave, EntityUid? user) : HandledEntityEventArgs
|
|
{
|
|
public EntityUid Microwave = microwave;
|
|
public EntityUid? User = user;
|
|
}
|