mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
17 lines
265 B
C++
17 lines
265 B
C++
|
#ifndef GAME_CURSORREPLACE_H
|
||
|
#define GAME_CURSORREPLACE_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
/// \brief MyGUI does not support rotating cursors, so we have to do it manually
|
||
|
class CursorReplace
|
||
|
{
|
||
|
public:
|
||
|
CursorReplace();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|