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

13 lines
308 B
C#
Raw Normal View History

2021-02-12 10:45:22 +01:00
using Content.Shared.Roles;
using JetBrains.Annotations;
namespace Content.Client.Jobs
{
[UsedImplicitly]
public class JanitorSpecial : JobSpecial
{
// Dummy class that exists solely to avoid an exception on the client,
// but allow the server-side counterpart to exist.
}
}