Add missing override specifiers

This commit is contained in:
Lioncash
2015-09-05 22:32:05 -04:00
parent 96e42dff52
commit 22635c1800
7 changed files with 53 additions and 50 deletions

View File

@ -29,9 +29,10 @@ private:
class Force : public Output
{
public:
std::string GetName() const;
Force(const std::string& name, LPDIRECTINPUTEFFECT iface);
~Force();
std::string GetName() const override;
void SetState(ControlState state);
void Update();
void Stop();