Mercurial > ~darius > hgwebdir.cgi > paradise_server
view pped/db.h @ 13:ed82a42ba89d
Added code to cause missiles, fighters and plasmas to get confused in
nebulous terrain. If it gets confused then it picks a random direction
to go.
author | darius |
---|---|
date | Sat, 06 Dec 1997 06:27:03 +0000 |
parents | 2719a89505ba |
children |
line wrap: on
line source
struct plnode { struct statentry player; struct plnode *next; struct plnode *prev; int status; }; /* prototypes for db.c */ void initDB(); void addDB(struct statentry *player); struct plnode *GetNode(int n); void DeleteNode(int n); int GetByName(char *name);