mirror of
https://github.com/decaf-emu/decaf-emu.git
synced 2025-04-02 10:42:13 -04:00
10 lines
167 B
C++
10 lines
167 B
C++
#pragma once
|
|
#include <string_view>
|
|
|
|
class ReplayParser
|
|
{
|
|
public:
|
|
virtual ~ReplayParser() = default;
|
|
|
|
virtual bool runUntilTimestamp(uint64_t timestamp) = 0;
|
|
};
|