Mercurial > hg > Game > Cerium
view Renderer/Engine/KeyStat.h @ 591:65e52fd2c2e2 draft
send linda not work...
author | kazz@kazzone.st.ie.u-ryukyu.ac.jp |
---|---|
date | Sun, 01 Nov 2009 06:14:52 +0900 |
parents | 3bc98f6d31ff |
children | eb6add789a24 |
line wrap: on
line source
#ifndef INCLUDED_KEY_STATUS #define INCLUDED_KEY_STATUS enum { NONE, HOLD, PUSH, }; // 可変長の構造体にする。 // int で1つ送り bit field でやると struct key_stat { int length; int right; int left; int up; int down; int circle; unsigned char data[0]; }; #endif