13.10.2016, 14:34
I see that lots of tutorials and the wiki create enums this way:
Prefix - 'e', capital letters and underlines, is it required? Would it be fine to do something like that?
PHP код:
enum E_MY_ARRAY
{
E_MY_ARRAY_MONEY,
E_MY_ARRAY_GUN
}
PHP код:
enum playerInfo
{
money,
gun,
someExample
}