Make clown clumsy. (#1481)
Co-authored-by: scuffedjays <yetanotherscuffed@gmail.com>
This commit is contained in:
committed by
GitHub
parent
fbbe43fff8
commit
2bd318e83f
26
Content.Shared/Roles/JobSpecial.cs
Normal file
26
Content.Shared/Roles/JobSpecial.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user