View Single Post
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 02-01-2020 , 12:46   Re: enum inside of enum
Reply With Quote #2

What do you mean by "enum inside enum"?

PHP Code:
enum type1
{
     
a,
     
b,
     
c
}

enum type2
{
    
d[type1],
    
e,
    
f

or you want to actually put an enum inside another enum?
__________________

Last edited by HamletEagle; 02-01-2020 at 12:46.
HamletEagle is offline