1 | /* |
---|
2 | * Abuse - dark 2D side-scrolling platform game |
---|
3 | * Copyright (c) 1995 Crack dot Com |
---|
4 | * |
---|
5 | * This software was released into the Public Domain. As with most public |
---|
6 | * domain software, no warranty is made or implied by Crack dot Com or |
---|
7 | * Jonathan Clark. |
---|
8 | */ |
---|
9 | |
---|
10 | #ifndef __COMPILED_HPP_ |
---|
11 | #define __COMPILED_HPP_ |
---|
12 | #include "macs.hpp" |
---|
13 | extern int32_t S_fall_start,S_falling,S_landing,S_pounce_wait, |
---|
14 | S_turn_around,S_fire_wait,S_ceil_fire,S_top_walk, |
---|
15 | S_blown_back_dead,S_jump_up,S_hiding,S_weapon_fire, |
---|
16 | S_hanging,S_blocking,S_rotate,S_climbing,S_climb_off, |
---|
17 | S_fly_stopped,S_fast_stopped,S_fast_running,S_fly_running, |
---|
18 | S_fly_start_run_jump,S_fly_run_jump,S_fly_run_jump_fall,S_fly_end_run_jump, |
---|
19 | S_fast_start_run_jump,S_fast_run_jump,S_fast_run_jump_fall,S_fast_end_run_jump, |
---|
20 | S_bright_tint,S_climb_on, |
---|
21 | |
---|
22 | S_ALAND_SND,S_ASCREAM_SND,S_ASLASH_SND, |
---|
23 | S_ROCKET_TOP,S_BFG_TOP,S_GRENADE_TOP,S_DFRIS_TOP,S_FIREBOMB_TOP,S_ANT_ROOF, |
---|
24 | S_MGUN_TOP,S_CLOUD,S_HIDDEN_ANT, |
---|
25 | S_health_image,S_fly_image,S_fast_image, |
---|
26 | S_sneaky_image,S_EXPLODE5,S_EXPLODE3,S_ROCKET, |
---|
27 | S_TRACK_GUN,S_SPRAY_GUN,S_LPING_SND,S_FLY_SND,S_SPEED_SND,S_SCARE_SND, |
---|
28 | S_LOW_HEALTH_SND,S_BUTTON_PRESS_SND, |
---|
29 | S_LINK_SND,S_DELETE_SND; |
---|
30 | |
---|
31 | |
---|
32 | |
---|
33 | void compiled_init(); |
---|
34 | void compiled_uninit(); |
---|
35 | |
---|
36 | extern uint8_t *bad_guy_array; // list flaging each character saying they are a bad bug or not |
---|
37 | // mainly used by the rocket to find targets |
---|
38 | |
---|
39 | #endif |
---|