iw4x-client/src/Components/Modules/SlowMotion.hpp
FutureRave 0cf2ac2853 Disable warning, fix naming inconsistency for component & remove unused code
Rename Slowmotion.cpp to SlowMotion.cpp

Rename Slowmotion.hpp to SlowMotion.hpp

Modify comments and remove unused code
2022-03-08 10:21:23 +00:00

23 lines
379 B
C++

#pragma once
#define BUTTON_FLAG_LEANLEFT 0x40
#define BUTTON_FLAG_LEANRIGHT 0x80
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);
};
}