X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fantilag.qh;h=e1123e786e6db126f17ff0923f5a891d94fc6fde;hb=e72ae8623dbd67dc7d85ed16fa4a18dd75663629;hp=b89f12bb153ec852d01a6f8553af37644d2d1345;hpb=935f38b6d41fb6e2579a4ee1e7c6fb0d063e5869;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/antilag.qh b/qcsrc/server/antilag.qh index b89f12bb1..e1123e786 100644 --- a/qcsrc/server/antilag.qh +++ b/qcsrc/server/antilag.qh @@ -1,3 +1,6 @@ +#ifndef ANTILAG_H +#define ANTILAG_H + void antilag_record(entity e, float t); vector antilag_takebackorigin(entity e, float t); vector antilag_takebackavgvelocity(entity e, float t0, float t1); @@ -9,3 +12,4 @@ void antilag_clear(entity e); #define ANTILAG_LATENCY(e) min(0.4, e.ping * 0.001) // add one ticrate? +#endif