iw4x-client/src/Components/Modules/SlowMotion.hpp
2022-08-11 00:21:58 +02:00

20 lines
309 B
C++

#pragma once
namespace Components
{
class SlowMotion : public Component
{
public:
SlowMotion();
private:
static int Delay;
static void SetSlowMotion();
static void ApplySlowMotion(int timePassed);
static void ApplySlowMotionStub();
static void DrawConnectionInterruptedStub(int a1);
};
}