Mercurial > hg > Game > Cerium
view TaskManager/Test/test_render/KeyStat.h @ 417:0e62e80fc039 draft
add key
author | Hiroki NAKASONE <hiroki@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 23 Sep 2009 21:05:24 +0900 |
parents | |
children | 6094dfd1f08c |
line wrap: on
line source
#ifndef INCLUDED_KEY_STATUS #define INCLUDED_KEY_STATUS enum { NONE, HOLD, PUSH, }; typedef struct key_stat { int right; int left; int up; int down; int circle; }; #endif