]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/client.qh
Move some code that only needs to run once per frame out of PlayerP*Think()
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / client.qh
index f982955ddfbbd7851a8bf9be66a482f55f0eb135..9611df4e87980f2fb639198e7f94fd1cae7f70ca 100644 (file)
@@ -402,6 +402,8 @@ const int MIN_SPEC_TIME = 1;
 bool joinAllowed(entity this);
 void Join(entity this);
 
+void PlayerFrame (entity this);
+
 #define SPECTATE_COPY() ACCUMULATE void SpectateCopy(entity this, entity spectatee)
 #define SPECTATE_COPYFIELD(fld) SPECTATE_COPY() { this.(fld) = spectatee.(fld); }