Files
OldThink/Content.Client/Jobs/ClownSpecial.cs

13 lines
312 B
C#
Raw Normal View History

using Content.Server.Jobs;
using JetBrains.Annotations;
namespace Content.Client.Jobs
{
[UsedImplicitly]
public sealed class ClownSpecial : JobSpecial
{
// Dummy class that exists solely to avoid an exception on the client,
// but allow the server-side counterpart to exist.
}
}