0cf2ac2853
Rename Slowmotion.cpp to SlowMotion.cpp Rename Slowmotion.hpp to SlowMotion.hpp Modify comments and remove unused code
23 lines
379 B
C++
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);
|
|
};
|
|
}
|