Files
RobustToolbox/Robust.Server/Replays/IServerReplayRecordingManager.cs

14 lines
389 B
C#

using Robust.Shared.Replays;
namespace Robust.Server.Replays;
[NotContentImplementable]
public interface IServerReplayRecordingManager : IReplayRecordingManager
{
/// <summary>
/// Processes pending write tasks and saves the replay data for the current tick. This should be called even if a
/// replay is not currently being recorded.
/// </summary>
void Update();
}