iw6-mod/src/runner/debugger.hpp
2024-01-24 10:45:25 +01:00

16 lines
234 B
C++

#pragma once
#include <thread>
class debugger
{
public:
debugger(unsigned long process_id, bool start);
~debugger();
private:
volatile bool terminate_ = false;
std::thread runner_;
void run(unsigned long process_id) const;
};