mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-29 08:15:44 +00:00
Cleaned up Enum to set init value to 0
This commit is contained in:
parent
2ec5af703c
commit
ad4b06f2bc
1 changed files with 2 additions and 2 deletions
|
|
@ -32,7 +32,7 @@
|
||||||
|
|
||||||
enum MBButtons
|
enum MBButtons
|
||||||
{
|
{
|
||||||
MBOk,
|
MBOk = 0,
|
||||||
MBOkCancel,
|
MBOkCancel,
|
||||||
MBRetryCancel,
|
MBRetryCancel,
|
||||||
MBSaveDontSave,
|
MBSaveDontSave,
|
||||||
|
|
@ -41,7 +41,7 @@ enum MBButtons
|
||||||
|
|
||||||
enum MBIcons
|
enum MBIcons
|
||||||
{
|
{
|
||||||
MIWarning,
|
MIWarning = 0,
|
||||||
MIInformation,
|
MIInformation,
|
||||||
MIQuestion,
|
MIQuestion,
|
||||||
MIStop,
|
MIStop,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue