8 lines
125 B
C++
8 lines
125 B
C++
#pragma once
|
|
#include <iostream>
|
|
|
|
#if IS_DEBUG==1
|
|
#define LOG(x) std::cout << x << std::endl
|
|
#else
|
|
#define LOG(x)
|
|
#endif
|