-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathMKBRIEF.H
More file actions
48 lines (36 loc) · 809 Bytes
/
MKBRIEF.H
File metadata and controls
48 lines (36 loc) · 809 Bytes
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
/******************************************************************************
File: mkbrief.h
By: David Schwartz
Date: August 1994
(C) Williams Entertainment
Mortal Kombat III Brief case header
******************************************************************************/
#ifndef __mk_brief_h__
#define __mk_brief_h__
/*
* DEFINITIONS
*/
typedef struct bcc
{
LONG b_code;
JUMPTBL b_func;
} BCC;
/*
* RAM
*/
/*
* PROTOTYPES
*/
void bc_p1_handicap(void);
void bc_p2_handicap(void);
void bc_throwing_disabled(void);
void bc_blocking_disabled(void);
void bc_jackbot(void);
void bc_switcheroo(void);
void bc_dark_fighting(void);
void stuff_round_123(WORD pa0);
extern BCC brief_case_codes[];
/*
* MACROS
*/
#endif /* __mk_brief_h__ */