Optimize doafters (#7428)

This commit is contained in:
mirrorcult
2022-04-04 22:48:56 -07:00
committed by GitHub
parent d1c980fe41
commit 53bea6c015
2 changed files with 18 additions and 1 deletions

View File

@@ -11,4 +11,10 @@ namespace Content.Server.DoAfter
// we'll just send them the index. Doesn't matter if it wraps around.
public byte RunningIndex;
}
/// <summary>
/// Added to entities that are currently performing any doafters.
/// </summary>
[RegisterComponent]
public sealed class ActiveDoAfterComponent : Component {}
}