Last change
on this file since 481 was
481,
checked in by Sam Hocevar, 12 years ago
|
Fuck the history, I'm renaming all .hpp files to .h for my own sanity.
|
File size:
1.1 KB
|
Rev | Line | |
---|
[56] | 1 | /* |
---|
| 2 | * Abuse - dark 2D side-scrolling platform game |
---|
| 3 | * Copyright (c) 2001 Anthony Kruize <trandor@labyrinth.net.au> |
---|
| 4 | * |
---|
| 5 | * This program is free software; you can redistribute it and/or modify |
---|
| 6 | * it under the terms of the GNU General Public License as published by |
---|
| 7 | * the Free Software Foundation; either version 2 of the License, or |
---|
| 8 | * (at your option) any later version. |
---|
| 9 | * |
---|
| 10 | * This program is distributed in the hope that it will be useful, |
---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 13 | * GNU General Public License for more details. |
---|
| 14 | * |
---|
| 15 | * You should have received a copy of the GNU General Public License |
---|
| 16 | * along with this program; if not, write to the Free Software Foundation, |
---|
| 17 | * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
---|
| 18 | */ |
---|
| 19 | |
---|
| 20 | #include "config.h" |
---|
| 21 | |
---|
[481] | 22 | #include "joy.h" |
---|
[2] | 23 | |
---|
| 24 | /* NOTE: No joystick support yet. |
---|
| 25 | */ |
---|
| 26 | |
---|
| 27 | int joy_init( int argc, char **argv ) |
---|
| 28 | { |
---|
[124] | 29 | /* Do Nothing */ |
---|
| 30 | return 0; |
---|
[2] | 31 | } |
---|
| 32 | |
---|
| 33 | void joy_status( int &b1, int &b2, int &b3, int &xv, int &yv ) |
---|
| 34 | { |
---|
[124] | 35 | /* Do Nothing */ |
---|
[2] | 36 | } |
---|
| 37 | |
---|
| 38 | void joy_calibrate() |
---|
| 39 | { |
---|
[124] | 40 | /* Do Nothing */ |
---|
[2] | 41 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.