view LightClone/Source/GuiCursor.h @ 60:b0f642ee22d3

Additional maps
author koryspansel <koryspansel@bendbroadband.com>
date Mon, 03 Oct 2011 08:58:08 -0700
parents efd2b1ca5b77
children
line wrap: on
line source

/*
 * GuiCursor
 */

#ifndef __GUICURSOR_H__
#define __GUICURSOR_H__

#include "Core.h"
#include "GuiElement.h"

/*
 * GuiCursor
 */
class GuiCursor : public GuiElement
{
	/*
	 * pTexture
	 */
	IDirect3DTexture9* pTexture;

public:

	/*
	 * GuiCursor
	 */
	GuiCursor();

	/*
	 * Render
	 */
	virtual void Render(GuiRenderContext& kContext);

	/*
	 * SetTexture
	 */
	ErrorCode SetTexture(const char* pName, bool bResize = true);
};

#endif //__GUICURSOR_H__