29.09.2013, 14:26
Quote:
Today I learned that function could be divided with ,(comma) without using spaces, Example code below.
pawn Код:
pawn Код:
|
https://sampforum.blast.hk/showthread.php?tid=216730
TIL that:
pawn Код:
enum myEnum
{
propertyA,
propertyB,
propertyC
}
new MyEnum[myEnum];
pawn Код:
enum myEnum (+= 4)
{
propertyA,
propertyB,
propertyC
}
new MyEnum[myEnum];
Pretty interesting stuff, I'm still learning the basics of #emit, but I didn't know this. :D