16 lines
243 B
C++
16 lines
243 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class SURREALISM_API utils_functions
|
|
{
|
|
public:
|
|
|
|
static void debug_print(const char*, float duration = 5.f);
|
|
};
|