annotate old/simple_pack/pad.h @ 906:becd6fad3ae0
draft
coord_pack is stuffed with infomation of create polygon at spe.
author |
Yutaka_Kinjyo |
date |
Mon, 19 Jul 2010 23:40:53 +0900 |
parents |
3bc98f6d31ff |
children |
|
rev |
line source |
53
|
1 const int CROSS = 0;
|
|
2 const int CIRCLE = 1;
|
|
3 const int SQUARE = 2;
|
|
4 const int TRIANGLE = 3;
|
|
5 const int L1 = 4;
|
|
6 const int R1 = 5;
|
|
7 const int L2 = 6;
|
|
8 const int R2 = 7;
|
|
9 const int START = 8;
|
|
10 const int SELECT = 9;
|
|
11 const int L3 = 10;
|
|
12 const int R3 = 11;
|
|
13 const int UP = 12;
|
|
14 const int DOWN = 13;
|
|
15 const int RIGHT = 14;
|
|
16 const int LEFT = 15;
|
|
17
|
|
18 int pad(int button);
|