2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-06 05:53:27 +00:00
metaforce/Runtime/GuiSys/CGuiWidgetDrawParms.cpp
Lioncash 04cc300019 CGuiWidgetDrawParms: Mark Default instance as const
This isn't ever modified, so it can be made const to prevent
unintentional modification (and allow it to be placed within the RO
segment).
2019-09-19 21:46:11 -04:00

6 lines
116 B
C++

#include "CGuiWidgetDrawParms.hpp"
namespace urde {
const CGuiWidgetDrawParms CGuiWidgetDrawParms::Default = {};
}