AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Plugins/AxiReplay/IReplayReader.cs

12 lines
277 B
C#
Raw Normal View History

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);
}
}