What does @ mean in front of function?
Code:
#include < amxmodx >
public plugin_init( )
{
register_plugin( "Compile me", "1.0", "Author" );
}
@__CompileThisPlugin( )
{
}
Code:
#include < amxmodx >
public plugin_init( )
{
register_plugin( "Compile me", "1.0", "Author" );
}
__CompileThisPlugin( )
{
}
I guess that @ = public but i'm not sure, that's why i'm asking.