* add intrinsic store, replace revenant store with it. * migrate PAI and also move to shared where possible * fix typos and clean up... intrinisic * oops, hopefully fixes test * Move to StoreSystem and ActionGrant * documentation and remove thing * review --------- Co-authored-by: Jessica M <jessica@maybe.sh> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
12 lines
317 B
C#
12 lines
317 B
C#
using Content.Shared.Actions;
|
|
|
|
namespace Content.Shared.Store.Events;
|
|
|
|
/// <summary>
|
|
/// Opens a store specified by <see cref="StoreComponent"/>
|
|
/// Used for entities with a store built into themselves like Revenant or PAI
|
|
/// </summary>
|
|
public sealed partial class IntrinsicStoreActionEvent : InstantActionEvent
|
|
{
|
|
}
|