gameui

view src/button.cc @ 5:5a84873185ff

rudimentary theme plugin system and other minor fixes
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 22 Mar 2014 01:50:01 +0200
parents e0916bb20b7f
children
line source
1 #include "button.h"
3 namespace goatkit {
5 struct ButtonImpl {
6 };
8 Button::Button()
9 {
10 button = new ButtonImpl;
11 }
13 Button::~Button()
14 {
15 delete button;
16 }
18 const char *Button::get_type_name() const
19 {
20 return "button";
21 }
23 } // namespace goatkit