blob: 02aed252e955166e6f786573abceee8730c93f61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* PARSEC HEADER: inp_sdl.h
*/
#ifndef _INP_SDL_H_
#define _INP_SDL_H_
// il_sdl.c implements the following functions
// --------------------------------------------
// void INPs_InitGeneral();
// void INPs_KillGeneral();
// void INPs_KeybInitHandler();
// void INPs_KeybKillHandler();
// void INPs_JoyInitHandler();
// void INPs_JoyKillHandler();
// int INPs_ActivateGun();
// int INPs_ActivateMissile();
// void INPs_Collect();
// void INPs_UserProcessAuxInput();
#endif //_INP_SDL_H_
|