mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-26 19:29:20 +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; }
|
||
|
};
|