mirror of
https://git.code.sf.net/p/quake/game-source
synced 2025-02-16 17:01:41 +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;
|
|
}
|
|
};
|