LabelClickable.h 453 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. GWEN
  3. Copyright (c) 2010 Facepunch Studios
  4. See license in Gwen.h
  5. */
  6. #pragma once
  7. #ifndef GWEN_CONTROLS_LABELCLICKABLE_H
  8. #define GWEN_CONTROLS_LABELCLICKABLE_H
  9. #include "Gwen/Controls/Base.h"
  10. #include "Gwen/Controls/Button.h"
  11. namespace Gwen
  12. {
  13. namespace Controls
  14. {
  15. class GWEN_EXPORT LabelClickable : public Button
  16. {
  17. public:
  18. GWEN_CONTROL( LabelClickable, Button );
  19. virtual void Render( Skin::Base* skin );
  20. };
  21. }
  22. }
  23. #endif