annotate pped/db.h @ 20:9f180bf494bd
default tip
Made torps and fighter wobbly.
They have a chance of tracking randomly instead of staying straight or seeking
if in nebulous terrain.
Option is turned on when NEBULA_EFFECT contains PHOTON and/or FIGHTER.
author |
darius |
date |
Wed, 24 Dec 1997 12:42:09 +0000 |
parents |
2719a89505ba |
children |
|
rev |
line source |
2
|
1
|
|
2 struct plnode {
|
|
3 struct statentry player;
|
|
4 struct plnode *next;
|
|
5 struct plnode *prev;
|
|
6 int status;
|
|
7 };
|
|
8
|
|
9 /* prototypes for db.c */
|
|
10 void initDB();
|
|
11 void addDB(struct statentry *player);
|
|
12 struct plnode *GetNode(int n);
|
|
13 void DeleteNode(int n);
|
|
14 int GetByName(char *name);
|
|
15
|