treewars/debug.h

11 lines
119 B
C
Raw Normal View History

2011-06-23 13:38:15 +00:00
#ifndef _DEBUG_H_
#define _DEBUG_H_
#ifdef DEBUG
#include <iostream>
using std::cerr;
using std::endl;
#endif
#endif