9 lines
272 B
C++
9 lines
272 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "utils_functions.h"
|
|
|
|
void utils_functions::debug_print(const char* str, float duration)
|
|
{
|
|
if (GEngine)GEngine->AddOnScreenDebugMessage(-1, duration, FColor::Red, FString(str));
|
|
} |