Files
tbd-station-14/Content.Shared/Roles/JobSpecial.cs
Vera Aguilera Puerto 078a62762f Improves the JobSpecial system. (#4626)
* Improves the JobSpecial system.

* clean up code
2021-09-16 23:17:19 +10:00

15 lines
379 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Shared.Roles
{
/// <summary>
/// Provides special hooks for when jobs get spawned in/equipped.
/// </summary>
[ImplicitDataDefinitionForInheritors]
public abstract class JobSpecial
{
public abstract void AfterEquip(IEntity mob);
}
}