mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 00:01:37 -07:00
20 lines
326 B
C
20 lines
326 B
C
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#ifndef USE_COG
|
|
#define USE_COG (ENABLE_DRAW_DEBUG && !NO_LOGGING)
|
|
#endif
|
|
|
|
#if USE_COG
|
|
|
|
#define IF_COG(expr) { expr; }
|
|
#define COG_LOG_CATEGORY FLogCategoryBase
|
|
|
|
#else //USE_COG
|
|
|
|
#define IF_COG(expr) (0)
|
|
#define COG_LOG_CATEGORY FNoLoggingCategory
|
|
|
|
#endif //USE_COG
|