Creating enums
#1

I see that lots of tutorials and the wiki create enums this way:
PHP код:
enum E_MY_ARRAY
{
    
E_MY_ARRAY_MONEY,
    
E_MY_ARRAY_GUN

Prefix - 'e', capital letters and underlines, is it required? Would it be fine to do something like that?
PHP код:
enum playerInfo
{
    
money,
    
gun,
someExample

Reply


Messages In This Thread
Creating enums - by EtayJ - 13.10.2016, 14:34
Re: Creating enums - by Vince - 13.10.2016, 14:41
Re: Creating enums - by EtayJ - 13.10.2016, 14:58
Re: Creating enums - by Gotham - 13.10.2016, 15:06
Re: Creating enums - by AmigaBlizzard - 13.10.2016, 15:56
Re: Creating enums - by EtayJ - 14.10.2016, 11:37

Forum Jump:


Users browsing this thread: 1 Guest(s)