forked from teamnwah/openmw-tes3coop
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
|