mirror of
https://github.com/id-Software/Quake-Tools.git
synced 2026-03-19 16:39:31 +01:00
22 lines
375 B
C
22 lines
375 B
C
// scriplib.h
|
|
|
|
#ifndef __CMDLIB__
|
|
#include "cmdlib.h"
|
|
#endif
|
|
|
|
#define MAXTOKEN 128
|
|
|
|
extern char token[MAXTOKEN];
|
|
extern char *scriptbuffer,*script_p,*scriptend_p;
|
|
extern int grabbed;
|
|
extern int scriptline;
|
|
extern qboolean endofscript;
|
|
|
|
|
|
void LoadScriptFile (char *filename);
|
|
qboolean GetToken (qboolean crossline);
|
|
void UnGetToken (void);
|
|
qboolean TokenAvailable (void);
|
|
|
|
|