mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
14 lines
389 B
C#
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();
|
|
}
|