Files
HeroesStone_PRC8/_module/nss/00_debug.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

11 lines
168 B
Plaintext

int _DEBUG = FALSE;
void Debug( string s )
{
if( _DEBUG )
{
s = GetName( OBJECT_SELF ) + ": " + s;
SendMessageToPC( GetFirstPC(), s );
}
}