Files
tbd-station-14/Content.Shared/Roles/JobSpecial.cs
Pieter-Jan Briers 2bd318e83f Make clown clumsy. (#1481)
Co-authored-by: scuffedjays <yetanotherscuffed@gmail.com>
2020-07-26 14:08:09 +02:00

27 lines
621 B
C#

using Robust.Shared.Interfaces.GameObjects;
using Robust.Shared.Interfaces.Serialization;
using Robust.Shared.Serialization;
namespace Content.Server.Jobs
{
/// <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)
{
}
}
}