* Fix namespaces and optimize imports * Cleanup fixes * Merge conflict fixes * Merge conflict fixes * Merge conflict fixes
27 lines
622 B
C#
27 lines
622 B
C#
using Robust.Shared.Interfaces.GameObjects;
|
|
using Robust.Shared.Interfaces.Serialization;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Roles
|
|
{
|
|
/// <summary>
|
|
/// Provides special hooks for when jobs get spawned in/equipped.
|
|
/// </summary>
|
|
public abstract class JobSpecial : IExposeData
|
|
{
|
|
void IExposeData.ExposeData(ObjectSerializer serializer)
|
|
{
|
|
ExposeData(serializer);
|
|
}
|
|
|
|
protected virtual void ExposeData(ObjectSerializer serializer)
|
|
{
|
|
}
|
|
|
|
public virtual void AfterEquip(IEntity mob)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|