diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
| commit | c068f22329d5cc722622a2183bbb22eef2093df7 (patch) | |
| tree | 12d56c1aede67988a55e241364606bfbb4dba933 /src/parsec/include/inp_subh.h | |
| download | openparsec-main.tar.xz openparsec-main.zip | |
Diffstat (limited to 'src/parsec/include/inp_subh.h')
| -rw-r--r-- | src/parsec/include/inp_subh.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/parsec/include/inp_subh.h b/src/parsec/include/inp_subh.h new file mode 100644 index 0000000..64a5d00 --- /dev/null +++ b/src/parsec/include/inp_subh.h @@ -0,0 +1,36 @@ +/* + * PARSEC HEADER: inp_subh.h + */ + +#ifndef _INP_SUBH_H_ +#define _INP_SUBH_H_ + + +// ---------------------------------------------------------------------------- +// INPUT SUBSYSTEM (INP) system-dependent function declarations - +// ---------------------------------------------------------------------------- + +void INPs_InitGeneral(); +void INPs_KillGeneral(); + +void INPs_KeybInitHandler(); +void INPs_KeybKillHandler(); + +void INPs_JoyInitHandler(); +void INPs_JoyKillHandler(); + +void INPs_MouseInitHandler(); +void INPs_MouseKillHandler(); +int INPs_MouseSetState( mousestate_s *state ); +int INPs_MouseGetState( mousestate_s *state ); + + +int INPs_ActivateGun(); +int INPs_ActivateMissile(); + +void INPs_Collect(); +void INPs_UserProcessAuxInput(); + +#endif // _INP_SUBH_H_ + + |
