AxiReplay/IReplayReader.cs

12 lines
277 B
C#
Raw Normal View History

2025-01-16 18:31:34 +08:00
using System;
namespace AxiReplay
{
internal interface IReplayReader : IDisposable
{
bool NextFrame(out ReplayStep data);
bool TakeFrame(int addFrame, out ReplayStep data);
bool NextFramebyFrameIdx(int FrameID, out ReplayStep data);
}
}