Actions System + UI (#2710)
Co-authored-by: Vera Aguilera Puerto <6766154+Zumorica@users.noreply.github.com>
This commit is contained in:
33
Content.Shared/Actions/ActionType.cs
Normal file
33
Content.Shared/Actions/ActionType.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
namespace Content.Shared.Actions
|
||||
{
|
||||
/// <summary>
|
||||
/// Every possible action. Corresponds to actionType in action prototypes.
|
||||
/// </summary>
|
||||
public enum ActionType : byte
|
||||
{
|
||||
Error,
|
||||
HumanScream,
|
||||
DebugInstant,
|
||||
DebugToggle,
|
||||
DebugTargetPoint,
|
||||
DebugTargetPointRepeat,
|
||||
DebugTargetEntity,
|
||||
DebugTargetEntityRepeat
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Every possible item action. Corresponds to actionType in itemAction prototypes.
|
||||
/// </summary>
|
||||
public enum ItemActionType : byte
|
||||
{
|
||||
Error,
|
||||
ToggleInternals,
|
||||
ToggleLight,
|
||||
DebugInstant,
|
||||
DebugToggle,
|
||||
DebugTargetPoint,
|
||||
DebugTargetPointRepeat,
|
||||
DebugTargetEntity,
|
||||
DebugTargetEntityRepeat
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user