mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-06 05:30:19 +00:00
16 lines
262 B
C++
16 lines
262 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace EightBit {
|
|
class DisassemblyEventArgs {
|
|
private:
|
|
std::string m_output;
|
|
|
|
public:
|
|
DisassemblyEventArgs(std::string output)
|
|
: m_output(output) {}
|
|
|
|
const std::string& getOutput() const { return m_output; }
|
|
};
|
|
} |