Fix accidental switch/teleporter behavior changes
[neverball] / share / tilt_null.c
1 /*
2  * Copyright (C) 2003 Robert Kooima
3  *
4  * NEVERBALL is  free software; you can redistribute  it and/or modify
5  * it under the  terms of the GNU General  Public License as published
6  * by the Free  Software Foundation; either version 2  of the License,
7  * or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT  ANY  WARRANTY;  without   even  the  implied  warranty  of
11  * MERCHANTABILITY or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU
12  * General Public License for more details.
13  */
14
15 void tilt_init(void)
16 {
17 }
18
19 void tilt_free(void)
20 {
21 }
22
23 int tilt_stat(void)
24 {
25     return 0;
26 }
27
28 int  tilt_get_button(int *b, int *s)
29 {
30     return 0;
31 }
32
33 void tilt_get_direct(int *x, int *y)
34 {
35     *x = 1;
36     *y = 1;
37 }
38
39 float tilt_get_x(void)
40 {
41     return 0.0f;
42 }
43
44 float tilt_get_z(void)
45 {
46     return 0.0f;
47 }