]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/file.qh
Create a sound list
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / file.qh
1 #ifndef FILE_H
2 #define FILE_H
3
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 }
12
13 #endif