mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-03-09 10:35:47 +00:00
15 lines
230 B
C++
15 lines
230 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class DisassemblyEventArgs
|
|
{
|
|
private:
|
|
std::string m_output;
|
|
|
|
public:
|
|
DisassemblyEventArgs(std::string output)
|
|
: m_output(output) {}
|
|
|
|
const std::string& getOutput() const { return m_output; }
|
|
}; |