Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add target ID plugin for 5.05 and 6.72 #129

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
Update PluginManager.hpp
ethylamine authored Sep 24, 2020
commit ba0ff70995f63195dae55dfd241d8f02ea484ce1
2 changes: 2 additions & 0 deletions kernel/src/Plugins/PluginManager.hpp
Original file line number Diff line number Diff line change
@@ -43,6 +43,7 @@ namespace Mira
Mira::Utils::IModule* m_RemotePlayEnabler;
Mira::Utils::IModule* m_SyscallGuard;
Mira::Utils::IModule* m_TTYRedirector;
Mira::Utils::IModule* m_TargetID;

public:
Mira::Utils::IModule* GetDebugger() { return m_Debugger; }
@@ -53,6 +54,7 @@ namespace Mira
Mira::Utils::IModule* GetMorpheusEnabler() { return m_MorpheusEnabler; }
Mira::Utils::IModule* GetRemotePlayEnabler() { return m_RemotePlayEnabler; }
Mira::Utils::IModule* GetSyscallGuard() { return m_SyscallGuard; }
Mira::Utils::IModule* GetTargetId() { return m_TargetID; }
};
}
}