treewars/debug.h

11 lines
119 B
C++

#ifndef _DEBUG_H_
#define _DEBUG_H_
#ifdef DEBUG
#include <iostream>
using std::cerr;
using std::endl;
#endif
#endif