206
207
208
209
210
211
212
213
214
215
216
217
218
219
| extern void initsound();
extern void cleansound();
// rendermd2
extern void rendermodel(OFString *mdl, int frame, int range, int tex, float rad,
float x, float y, float z, float yaw, float pitch, bool teammate,
float scale, float speed, int snap = 0, int basetime = 0);
extern MapModelInfo *getmminfo(int i);
// server
extern void initserver(bool dedicated, int uprate, const char *sdesc,
const char *ip, const char *master, OFString *passwd, int maxcl);
extern void cleanupserver();
extern void localconnect();
|
>
| 206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
| extern void initsound();
extern void cleansound();
// rendermd2
extern void rendermodel(OFString *mdl, int frame, int range, int tex, float rad,
float x, float y, float z, float yaw, float pitch, bool teammate,
float scale, float speed, int snap = 0, int basetime = 0);
@class MapModelInfo;
extern MapModelInfo *getmminfo(int i);
// server
extern void initserver(bool dedicated, int uprate, const char *sdesc,
const char *ip, const char *master, OFString *passwd, int maxcl);
extern void cleanupserver();
extern void localconnect();
|