the progs engine and the server are now completely independent paving the way

for CSQC.
This commit is contained in:
Bill Currie 2001-01-03 05:54:35 +00:00
parent 6a52b0460c
commit 0192ed40c3
7 changed files with 57 additions and 34 deletions

View file

@ -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