RoveSoSimulator
Loading...
Searching...
No Matches
Source
RoveSoSimulator
RoveSoSimulator.h
1
// Fill out your copyright notice in the Description page of Project Settings.
2
3
#
pragma
once
4
5
#
include
"CoreMinimal.h"
6
7
// custom log category
8
DECLARE_LOG_CATEGORY_EXTERN(RoveSoSimulator, Log, All);
9
10
// custom log macro
11
#
define
LOG
(
x
,
...
)
UE_LOG
(
RoveSoSimulator
,
Log
,
TEXT
(
x
)
,
__VA_ARGS__
)
12
#
define
LOGC
(
x
,
...
)
UE_LOG
(
RoveSoSimulator
,
Log
,
x
,
__VA_ARGS__
)
13
#
define
LOG_WARNING
(
x
,
...
)
UE_LOG
(
RoveSoSimulator
,
Warning
,
TEXT
(
x
)
,
__VA_ARGS__
)
14
#
define
LOG_ERROR
(
x
,
...
)
UE_LOG
(
RoveSoSimulator
,
Error
,
TEXT
(
x
)
,
__VA_ARGS__
)
Generated by
1.16.1