// Combo Class:
class Combo extends Info;
// blah blah
var int keys[4];
// blah blah
--------- --------- ---------
// What I want:
class blahCombo extends Combo;
var int keys[8] // or more
// do speed combo for testing
--------- --------- ---------
However, I get an error:
Warning, 'keys' obscured 'keys' defined in base class.
The combo doesn't work when I press the keys. It has to be without the warning for it to work
So, how can I fix this? If I cannot get around the warning, I'll have to do mass work
class Combo extends Info;
// blah blah
var int keys[4];
// blah blah
--------- --------- ---------
// What I want:
class blahCombo extends Combo;
var int keys[8] // or more
// do speed combo for testing
--------- --------- ---------
However, I get an error:
Warning, 'keys' obscured 'keys' defined in base class.
The combo doesn't work when I press the keys. It has to be without the warning for it to work


Comment