Mercurial > hg > Members > kono > Cerium
view Renderer/Engine/Button.h @ 1029:22d7263cec2d
copy script add.
author | tkaito |
---|---|
date | Mon, 15 Nov 2010 22:39:25 +0900 |
parents | 735f76483bb2 |
children | b067fd5d8859 |
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