#include "stdafx.h"
typedef enum
{
one = 5,
two,
three,
} MMI_3D_GAME_LIST_ENUM;
MMI_3D_GAME_LIST_ENUM a = three;
int main(int argc, char* argv[])
{
printf("%d\n",a);
return 0;
}
#include "stdafx.h"
typedef enum
{
one = 5,
two,
three,
} MMI_3D_GAME_LIST_ENUM;
MMI_3D_GAME_LIST_ENUM a = three;
int main(int argc, char* argv[])
{
printf("%d\n",a);
return 0;
}