-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhud.h
57 lines (53 loc) · 2.23 KB
/
hud.h
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Verlies - ein Adventure im Retrodesign
//
// Copyright (C) 2018-2022 Heiko Wolf
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License As published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY Or FITNESS For A PARTICULAR PURPOSE. See the
// GNU General Public License For more details.
//
// You should have received a copy of the GNU General Public License along
// With this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// Kontakt: projekte@kabelmail.net
#ifndef _HUD_H_
#define _HUD_H_
#include "globals.h"
extern void p_hud_umwandlung (UINT8 v_wert, UINT8 l_xk, UINT8 l_yk, UINT8 l_layer) __banked;
extern void p_hud_showLP (void) __banked;
extern void p_hud_showTP (void) __banked;
extern void p_hud_showRS (void) __banked;
extern void p_hud_showGO (void) __banked;
extern void p_hud_showHT (void) __banked;
extern void p_hud_showPR (void) __banked;
extern void p_hud_showXYK (void) __banked;
extern void p_hud_showMK (void) __banked;
extern void p_hud_hide (void) __banked;
extern void p_hud_showKey (void) __banked;
extern void p_hud_show (void) __banked;
extern void p_hud_blink (void) __banked;
extern void p_hud_showLvl (void) __banked;
extern void p_hud_showMLP (void) __banked;
extern void p_hud_showMPR (void) __banked;
extern void p_hud_showAT (void) __banked;
extern void p_hud_showMHT (void) __banked;
extern void p_gui_showHK (void) __banked;
extern void p_hud_showAD (void) __banked;
extern void p_hud_showMAD (void) __banked;
extern void p_hud_showSpitzhacke (void) __banked;
extern void p_hud_showStatus (void) __banked;
extern void p_hud_init (void) __banked;
extern void p_hud_showStaub (void) __banked;
extern void p_hud_view_erz (void) __banked;
extern void p_view_sword (void) __banked;
extern void p_gui_show_infoscreen (void) __banked;
extern void p_gui_hide_infoscreen (void) __banked;
extern void p_hud_showSchaufel (void) __banked;
#endif