Last change
on this file since 608 was
49,
checked in by Sam Hocevar, 15 years ago
|
- Imported original public domain release, for future reference.
|
File size:
472 bytes
|
Rev | Line | |
---|
[49] | 1 | #ifndef __CONFIG_HPP_ |
---|
| 2 | #define __CONFIG_HPP_ |
---|
| 3 | |
---|
| 4 | enum { HIGH_DETAIL, |
---|
| 5 | MEDIUM_DETAIL, |
---|
| 6 | LOW_DETAIL, |
---|
| 7 | POOR_DETAIL }; |
---|
| 8 | |
---|
| 9 | |
---|
| 10 | void key_bindings(int player, int &left, int &right, int &up, int &down, int &b1, int &b2, int &b3, int &b4); |
---|
| 11 | void get_key_bindings(); |
---|
| 12 | void get_movement(int player, int &x, int &y, int &b1, int &b2, int &b3, int &b4); |
---|
| 13 | void config_cleanup(); // free any memory allocated |
---|
| 14 | int get_keycode(char *str); // -1 means not a valid key code |
---|
| 15 | |
---|
| 16 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.