mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-30 00:30:38 +00:00
the progs engine and the server are now completely independent paving the way
for CSQC.
This commit is contained in:
parent
6a52b0460c
commit
0192ed40c3
7 changed files with 57 additions and 34 deletions
|
@ -153,6 +153,10 @@ eval_t *GetEdictFieldValue(struct progs_s *pr, edict_t *ed, char *field);
|
|||
char *PR_GetString(struct progs_s *pr, int num);
|
||||
int PR_SetString(struct progs_s *pr, char *s);
|
||||
|
||||
// externaly supplied functions
|
||||
|
||||
int ED_Parse_Extra_Fields (struct progs_s *pr, char *key, char *value);
|
||||
|
||||
//============================================================================
|
||||
|
||||
#define MAX_STACK_DEPTH 32
|
||||
|
@ -195,6 +199,8 @@ typedef struct progs_s {
|
|||
int *num_edicts;
|
||||
double *time;
|
||||
int null_bad;
|
||||
|
||||
int crc;
|
||||
} progs_t;
|
||||
|
||||
#endif // _PROGS_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue