| void wpnPrint (string s) | |
| { | |
| PrintToRPT("" + s); // comment/uncomment to hide/see at least important info | |
| //Print("" + s); // comment/uncomment to hide/see at least important info | |
| } | |
| void wpnDebugPrint (string s) | |
| { | |
| PrintToRPT("" + s); // comment/uncomment to hide/see debug logs | |
| //Print("" + s); // comment/uncomment to hide/see debug logs | |
| } | |
| void wpnDebugSpam (string s) | |
| { | |
| PrintToRPT("" + s); // comment/uncomment to hide/see debug logs | |
| //Print("" + s); // comment/uncomment to hide/see debug logs | |
| } | |
| void wpnDebugSpamALot (string s) | |
| { | |
| PrintToRPT("" + s); // comment/uncomment to hide/see debug logs | |
| //Print("" + s); // comment/uncomment to hide/see debug logs | |
| } | |
| // @NOTE: to see output from FSM transitions, go to: | |
| // 4_World/Entities/HFSMBase.c | |
| // @see fsmDebugPrint @see fsmDebugSpam | |