diff options
author | uniboi <64006268+uniboi@users.noreply.github.com> | 2024-10-14 13:20:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-14 15:20:54 +0200 |
commit | 27e17113161323b5a6269d395dbcc04162f50319 (patch) | |
tree | fbe294e2be70f1838504482d4d87727a689bd7e6 /primedev/plugins/plugins.h | |
parent | 42d97028e1a474e7fecc1de7e76c5d92ecf2c28f (diff) | |
download | NorthstarLauncher-27e17113161323b5a6269d395dbcc04162f50319.tar.gz NorthstarLauncher-27e17113161323b5a6269d395dbcc04162f50319.zip |
plugins: Allow plugins to customize their log colors (#823)
Allows plugins to specify a custom colour for their indicator in the logs
Diffstat (limited to 'primedev/plugins/plugins.h')
-rw-r--r-- | primedev/plugins/plugins.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/primedev/plugins/plugins.h b/primedev/plugins/plugins.h index 71e184c7..95ec08b5 100644 --- a/primedev/plugins/plugins.h +++ b/primedev/plugins/plugins.h @@ -20,6 +20,7 @@ private: std::string m_location; // path of the dll bool m_runOnServer; bool m_runOnClient; + Color m_logColor; public: HMODULE m_handle; |