mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-02 20:10:32 +00:00
Changes for Linux.
This commit is contained in:
parent
aa35157eef
commit
3336bffad2
30 changed files with 99 additions and 173 deletions
|
|
@ -33,7 +33,7 @@ class PlatformCursorController
|
|||
{
|
||||
protected:
|
||||
|
||||
struct CursorShape
|
||||
struct Cursor_Shape
|
||||
{
|
||||
enum Type
|
||||
{
|
||||
|
|
@ -46,7 +46,7 @@ protected:
|
|||
String mCursorFile; // Points to a custom cursor file
|
||||
};
|
||||
|
||||
Vector<CursorShape> mCursors;
|
||||
Vector<Cursor_Shape> mCursors;
|
||||
|
||||
/// The PlatformWindow that owns this Cursor Controller
|
||||
PlatformWindow *mOwner;
|
||||
|
|
@ -85,7 +85,7 @@ public:
|
|||
virtual void setCursorVisible( bool visible ) = 0;
|
||||
virtual bool isCursorVisible() = 0;
|
||||
|
||||
virtual void setCursorShape( const CursorShape &shape, bool reload );
|
||||
virtual void setCursorShape( const Cursor_Shape &shape, bool reload );
|
||||
virtual void setCursorShape( U32 cursorID ) = 0;
|
||||
virtual void setCursorShape( const UTF8 *filename, bool reload ) = 0;
|
||||
|
||||
|
|
@ -99,4 +99,4 @@ public:
|
|||
virtual S32 getDoubleClickHeight() = 0;
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue