11 lines
232 B
C++
11 lines
232 B
C++
/*!
|
|
* @author SIMAILA Djalim
|
|
*/
|
|
|
|
|
|
#include "utils_functions.h"
|
|
|
|
void utils_functions::debug_print(const char* str, float duration)
|
|
{
|
|
if (GEngine)GEngine->AddOnScreenDebugMessage(-1, duration, FColor::Red, FString(str));
|
|
} |