mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-06-01 17:42:30 +00:00
tidied up locs code and changed loc commands to loc <args>
This commit is contained in:
parent
a348e15954
commit
6bea8babbe
3 changed files with 202 additions and 256 deletions
|
@ -38,9 +38,16 @@ typedef struct
|
|||
} location_t;
|
||||
|
||||
location_t *locs_find(vec3_t target);
|
||||
void locs_load(char *mapname);
|
||||
void locs_load(char *filename);
|
||||
void locs_reset();
|
||||
void locs_add(vec3_t location, char *name);
|
||||
void map_to_loc (char *mapname, char *filename);
|
||||
void locs_del (char *filename, vec3_t loc);
|
||||
void locs_edit (char *filename, vec3_t loc, char *desc);
|
||||
void locs_mark (char *filename, vec3_t loc, char *desc);
|
||||
void locs_save (char *filename);
|
||||
int locs_nearest (vec3_t loc);
|
||||
|
||||
extern location_t **locations;
|
||||
extern int locations_count;
|
||||
#ifdef HAVE_ZLIB
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue