Gered
c5cdddbeaa
current versions of all of my basic framework sources, build configurations/scripts, and supporting assets
37 lines
524 B
C++
37 lines
524 B
C++
/*
|
|
GWEN
|
|
Copyright (c) 2010 Facepunch Studios
|
|
See license in Gwen.h
|
|
*/
|
|
|
|
#pragma once
|
|
#ifndef GWEN_CONTROLS_HIGHLIGHT_H
|
|
#define GWEN_CONTROLS_HIGHLIGHT_H
|
|
|
|
#include "../gwen_baserender.h"
|
|
#include "gwen_base.h"
|
|
#include "../gwen_skin.h"
|
|
|
|
namespace Gwen
|
|
{
|
|
namespace ControlsInternal
|
|
{
|
|
class GWEN_EXPORT Highlight : public Controls::Base
|
|
{
|
|
public:
|
|
|
|
GWEN_CONTROL_INLINE( Highlight, Controls::Base )
|
|
{
|
|
|
|
}
|
|
|
|
void Render( Skin::Base* skin )
|
|
{
|
|
skin->DrawHighlight( this );
|
|
}
|
|
};
|
|
}
|
|
|
|
}
|
|
#endif
|