Manually revert d34418100b

This commit is contained in:
comex
2014-12-20 00:21:40 -05:00
parent 31bc51072b
commit fba3abe4cf
2 changed files with 0 additions and 117 deletions

View File

@ -98,32 +98,6 @@ private:
std::string GetName() const override;
void SetState(ControlState state) override;
};
class SineEffect : public HapticEffect
{
public:
SineEffect(SDL_Haptic* haptic) : HapticEffect(haptic) {}
std::string GetName() const override;
void SetState(ControlState state) override;
};
#ifdef SDL_HAPTIC_SQUARE
class SquareEffect : public HapticEffect
{
public:
SquareEffect(SDL_Haptic* haptic) : HapticEffect(haptic) {}
std::string GetName() const;
void SetState(ControlState state);
};
#endif // defined(SDL_HAPTIC_SQUARE)
class TriangleEffect : public HapticEffect
{
public:
TriangleEffect(SDL_Haptic* haptic) : HapticEffect(haptic) {}
std::string GetName() const override;
void SetState(ControlState state) override;
};
#endif
public: