20 lines
397 B
C++
20 lines
397 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Event.hpp"
|
||
|
|
#include "src/Targets/TargetMemory.hpp"
|
||
|
|
|
||
|
|
namespace Bloom::Events
|
||
|
|
{
|
||
|
|
class MemoryWrittenToTarget: public Event
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static inline const std::string name = "MemoryWrittenToTarget";
|
||
|
|
|
||
|
|
std::string getName() const override {
|
||
|
|
return MemoryWrittenToTarget::name;
|
||
|
|
}
|
||
|
|
|
||
|
|
MemoryWrittenToTarget() = default;
|
||
|
|
};
|
||
|
|
}
|