gameui

view src/button.cc @ 4:e0916bb20b7f

changed the name to goatkit
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 21 Mar 2014 21:45:37 +0200
parents f1014234dece
children 5a84873185ff
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 } // namespace goatkit