mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 06:43:58 -07:00
# More useful environment (water, lighting) editing (now saved into the map files). Fixed no-PCH a bit. This was SVN commit r4002.
16 lines
369 B
C++
16 lines
369 B
C++
#ifndef COLOURDIALOG_H__
|
|
#define COLOURDIALOG_H__
|
|
|
|
class ColourDialog : public wxColourDialog
|
|
{
|
|
public:
|
|
// Typical customColourConfigPath would be "Scenario Editor/LightingColour"
|
|
ColourDialog(wxWindow* parent, const wxString& customColourConfigPath, const wxColour& defaultColour);
|
|
|
|
int ShowModal();
|
|
|
|
private:
|
|
wxString m_ConfigPath;
|
|
};
|
|
|
|
#endif // COLOURDIALOG_H__
|