Blame |
Last modification |
View Log
| RSS feed
#ifndef __CURSORWIDGET_H__
#define __CURSORWIDGET_H__
#include "Widget.h"
#include "Point.h"
namespace Sexy
{
class Image;
class CursorWidget : public Widget
{
public:
Image* mImage;
public:
CursorWidget();
virtual void Draw(Graphics* g);
void SetImage(Image* theImage);
Point GetHotspot();
};
}
#endif //__CURSORWIDGET_H__