- add: more interaction shit

This commit is contained in:
2024-02-26 21:43:11 +03:00
parent b63a46e032
commit a31947423c
27 changed files with 752 additions and 97 deletions

View File

@@ -0,0 +1,15 @@
using Content.Shared.DoAfter;
using Robust.Shared.Serialization;
namespace Content.Shared._Amour.InteractionPanel;
[Serializable, NetSerializable]
public sealed partial class PanelDoAfterEvent : SimpleDoAfterEvent
{
[DataField] public string Prototype;
public PanelDoAfterEvent(string prototype)
{
Prototype = prototype;
}
}