mirror of
https://github.com/Patoke/4JLibs.git
synced 2026-05-28 16:44:32 +00:00
14 lines
406 B
C
14 lines
406 B
C
#pragma once
|
|
|
|
// enable only if you know what you're doing
|
|
// requires linking Minecraft.Client against Ws2_32.lib
|
|
// stats are available at http://127.0.0.1:1338/
|
|
|
|
//#define ENABLE_PROFILING
|
|
|
|
#ifdef ENABLE_PROFILING
|
|
#include "microprofile/microprofile.h"
|
|
#define PROFILER_SCOPE(group, name, color) MICROPROFILE_SCOPEI(group, name, color);
|
|
#else
|
|
#define PROFILER_SCOPE(group, name, color) ((void)0);
|
|
#endif |