Adds jittering. (#4809)

Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
This commit is contained in:
Vera Aguilera Puerto
2021-10-09 17:30:04 +02:00
committed by GitHub
parent 05cd30b564
commit 67fd509c9f
8 changed files with 283 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
using Content.Shared.Jittering;
namespace Content.Server.Jittering
{
public class JitteringSystem : SharedJitteringSystem
{
// This entity system only exists on the server so it will be registered, otherwise we can't use SharedJitteringSystem...
}
}