]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/file.qh
Fix cl_rollkillspeed causing the view to flicker a lot when dead if v_deathtilt is...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / file.qh
1 #pragma once
2
3 bool fexists(string f)
4 {
5         int fh = fopen(f, FILE_READ);
6         if (fh < 0) return false;
7         fclose(fh);
8         return true;
9 }