view Renderer/test_render/Button.h @ 395:208ba3551474 draft

chain on SPE
author game@localhost.localdomain
date Thu, 17 Sep 2009 16:55:18 +0900
parents 15bfacccde99
children
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