Last change
on this file since 88 was
57,
checked in by Sam Hocevar, 14 years ago
|
- Move each header to the same directory as its corresponding source, to
get a better idea of which files are likely to export symbols.
|
File size:
824 bytes
|
Line | |
---|
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 __COP_HPP_ |
---|
11 | #define __COP_HPP_ |
---|
12 | |
---|
13 | // functions defined for the main player, these were translated because they |
---|
14 | // are called every tick and they were getting slow/complicated |
---|
15 | |
---|
16 | void *top_ai(); |
---|
17 | void *laser_ufun(void *args); |
---|
18 | void *top_ufun(void *args); |
---|
19 | void *plaser_ufun(void *args); |
---|
20 | void *player_rocket_ufun(void *args); |
---|
21 | void *lsaber_ufun(void *args); |
---|
22 | void *cop_mover(int xm, int ym, int but); |
---|
23 | void *sgun_ai(); |
---|
24 | void *ladder_ai(); |
---|
25 | void *top_draw(); |
---|
26 | void *bottom_draw(); |
---|
27 | void *mover_ai(); |
---|
28 | void *respawn_ai(); |
---|
29 | void *score_draw(); |
---|
30 | void *show_kills(); |
---|
31 | |
---|
32 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.