Last change
on this file since 39 was
39,
checked in by Sam Hocevar, 15 years ago
|
- Fix almost 2,000 warnings by using proper "const" keywords where needed.
|
File size:
478 bytes
|
Line | |
---|
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 const *str); // -1 means not a valid key code |
---|
15 | |
---|
16 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.