Mercurial > hg > Game > Cerium
view Renderer/Engine/Button.h @ 848:a033d464c812 draft
addChild fix
author | tkaito |
---|---|
date | Sun, 06 Jun 2010 03:31:52 +0900 |
parents | 3bc98f6d31ff |
children | d8eca90afa21 |
line wrap: on
line source
#ifndef INCLUDED_BUTTON #define INCLUDED_BUTTON class Button { public: int push; int hold; int release; Button(void) : push(0), hold(0), release(0) {} void push_work(void); void release_work(void); int isPush(void); int isHold(void); int isRelease(void); }; #endif