mirror of
https://github.com/Ed94/Cog.git
synced 2026-07-16 22:41:27 -07:00
13 lines
399 B
C++
13 lines
399 B
C++
#include "CogDebugPlotBlueprint.h"
|
|
|
|
#include "CogDebugDefines.h"
|
|
#include "CogDebugPlot.h"
|
|
|
|
//--------------------------------------------------------------------------------------------------------------------------
|
|
void UCogDebugPlotBlueprint::Plot(const UObject* Owner, const FName Name, const float Value)
|
|
{
|
|
#if ENABLE_COG
|
|
FCogDebugPlot::PlotValue(Owner, Name, Value);
|
|
#endif //ENABLE_COG
|
|
}
|