mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 08:02:23 -07:00
18 lines
227 B
C
18 lines
227 B
C
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#ifndef USE_COG
|
|
#define USE_COG (ENABLE_DRAW_DEBUG && !NO_LOGGING)
|
|
#endif
|
|
|
|
#if !USE_COG
|
|
|
|
#define COG(expr) (0)
|
|
|
|
#else //!ENABLE_COG
|
|
|
|
#define COG(expr) { expr; }
|
|
|
|
#endif //!ENABLE_COG
|