mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 10:19:55 +00:00
16 lines
265 B
C++
16 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
|