diff options
author | George Hazan <george.hazan@gmail.com> | 2024-02-19 20:38:48 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-02-19 20:38:48 +0300 |
commit | e067f891787c54aac07ab2ac60ef866a7df69165 (patch) | |
tree | 774cd773ebf69c776141a9ef3471b0768890610b /plugins/NewStory/src/stdafx.h | |
parent | 7b2016dd3679ffc8f47a138348cd2e63bcc4b69e (diff) |
NS: code merge
Diffstat (limited to 'plugins/NewStory/src/stdafx.h')
-rw-r--r-- | plugins/NewStory/src/stdafx.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/NewStory/src/stdafx.h b/plugins/NewStory/src/stdafx.h index 11fa8753b4..f1750a365b 100644 --- a/plugins/NewStory/src/stdafx.h +++ b/plugins/NewStory/src/stdafx.h @@ -104,12 +104,18 @@ struct CMPlugin : public PLUGIN<CMPlugin> bool bMsgGrouping, bDrawEdge, bHppCompat, bDisableDelete = false;
bool bShowType, bShowDirecction;
+ COLORREF clCustom[5];
+
CMPlugin();
+ void LoadOptions();
+
int Load() override;
int Unload() override;
};
extern CMOption<bool> g_bOptGrouping, g_bOptDrawEdge, g_bOptHppCompat, g_bShowType, g_bShowDirection;
+extern CMOption<uint32_t> g_clCustom0, g_clCustom1, g_clCustom2, g_clCustom3, g_clCustom4;
+
extern wchar_t* months[12];
extern int g_iPixelY;
|