#ifndef GOBJDEBUG01MACROFUNCTIONS_H
#define GOBJDEBUG01MACROFUNCTIONS_H

// If the header is included expand to code or else nothing.
#ifdef GOBJDEBUG01_H
#define gobjlog_log gobjlog log;
#else
#define gobjlog_log  
#endif

// When drawing spawned from one draw() function then 4 lines of code to 1.
#define gobjlog_draw(variable) { gobjlog_log variable.draw(); } 


#endif


