2017-01-20 08:36:52 -05:00
|
|
|
#pragma once
|
|
|
|
|
2017-01-19 16:23:59 -05:00
|
|
|
#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();
|
2017-06-29 17:03:57 -04:00
|
|
|
|
|
|
|
static void DrawConnectionInterruptedStub(int a1);
|
2017-01-19 16:23:59 -05:00
|
|
|
};
|
|
|
|
}
|