From ddfd6fd49a1a0a04f73355f06e38e419a1a4f328 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 8 Jun 2020 11:35:19 -0500 Subject: [PATCH] put IRewinder in its own file --- src/BizHawk.Client.Common/rewind/IRewinder.cs | 20 +++++++++++++++++++ src/BizHawk.Client.Common/rewind/Rewinder.cs | 16 --------------- 2 files changed, 20 insertions(+), 16 deletions(-) create mode 100644 src/BizHawk.Client.Common/rewind/IRewinder.cs diff --git a/src/BizHawk.Client.Common/rewind/IRewinder.cs b/src/BizHawk.Client.Common/rewind/IRewinder.cs new file mode 100644 index 0000000000..66ec52a1a1 --- /dev/null +++ b/src/BizHawk.Client.Common/rewind/IRewinder.cs @@ -0,0 +1,20 @@ +using System; + +namespace BizHawk.Client.Common +{ + public interface IRewinder : IDisposable + { + int Count { get; } + float FullnessRatio { get; } + long Size { get; } + int RewindFrequency { get; } + + bool Active { get; } + + void Capture(int frame); + bool Rewind(int frames); + + void Suspend(); + void Resume(); + } +} diff --git a/src/BizHawk.Client.Common/rewind/Rewinder.cs b/src/BizHawk.Client.Common/rewind/Rewinder.cs index a7fa0634d4..632ab1b734 100644 --- a/src/BizHawk.Client.Common/rewind/Rewinder.cs +++ b/src/BizHawk.Client.Common/rewind/Rewinder.cs @@ -4,22 +4,6 @@ using BizHawk.Emulation.Common; namespace BizHawk.Client.Common { - public interface IRewinder : IDisposable - { - int Count { get; } - float FullnessRatio { get; } - long Size { get; } - int RewindFrequency { get; } - - bool Active { get; } - - void Capture(int frame); - bool Rewind(int frames); - - void Suspend(); - void Resume(); - } - public class Rewinder : IRewinder { private readonly IStatable _statableCore;