openrw/rwlib/source/rw/defines.hpp

11 lines
172 B
C++
Raw Normal View History

#ifndef _LIBRW_DEFINES_HPP_
#define _LIBRW_DEFINES_HPP_
#include <iostream>
#define RW_UNIMPLEMENTED(msg) \
std::cout << "Unimplemented: " << msg << std::endl;
#endif