mirror of
https://github.com/rwengine/openrw.git
synced 2025-05-01 06:18:04 +03:00
11 lines
172 B
C++
11 lines
172 B
C++
![]() |
#ifndef _LIBRW_DEFINES_HPP_
|
||
|
#define _LIBRW_DEFINES_HPP_
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
#define RW_UNIMPLEMENTED(msg) \
|
||
|
std::cout << "Unimplemented: " << msg << std::endl;
|
||
|
|
||
|
|
||
|
#endif
|