Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
file.qh
Go to the documentation of this file.
1
#pragma once
2
3
ERASEABLE
4
bool
fexists
(
string
f)
5
{
6
int
fh =
fopen
(f,
FILE_READ
);
7
if
(fh < 0)
8
return
false
;
9
fclose
(fh);
10
return
true
;
11
}
FILE_READ
const float FILE_READ
Definition
csprogsdefs.qc:235
fexists
ERASEABLE bool fexists(string f)
Definition
file.qh:4
ERASEABLE
#define ERASEABLE
Definition
_all.inc:37
fclose
void fclose(float fhandle)
fopen
float fopen(string filename, float mode)
lib
file.qh
Generated on
for Xonotic QuakeC by
1.16.1