Mercurial > hg > Members > kono > Cerium
view Renderer/Engine/KeyStat.h @ 760:24a37fe8419a
first of all commit, not work Rendering/Test/create_task
author | hiroki |
---|---|
date | Thu, 04 Feb 2010 14:46:09 +0900 |
parents | 735f76483bb2 |
children | 496a8159e840 |
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