13.07.2011, 17:59
What's better to use enums or just global variables? What take less memory, or the taken memory is the same in both cases?
Example:
or
Example:
pawn Код:
enum My_Enum
{
var1,
var2,
var3,
}new Info[My_Enum];
pawn Код:
new
var1,
var2,
var3;

