mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-22 03:51:12 +00:00
14 lines
158 B
C++
14 lines
158 B
C++
#include "common.qh"
|
|
#include "debug.qh"
|
|
|
|
void ()
|
|
debug_impulse =
|
|
{
|
|
local float imp;
|
|
|
|
imp = self.impulse;
|
|
self.impulse = 0;
|
|
{
|
|
self.impulse = imp;
|
|
}
|
|
};
|