summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/ControlGroup/Slider.h
blob: fb038cd931e946c5f62c5e266fcda849ff344e15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2017 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#pragma once

#include <string>
#include "InputCommon/ControllerEmu/ControlGroup/ControlGroup.h"
#include "InputCommon/ControllerInterface/Device.h"

namespace ControllerEmu
{
class Slider : public ControlGroup
{
public:
  Slider(const std::string& name_, const std::string& ui_name_);
  explicit Slider(const std::string& name_);

  void GetState(ControlState* slider);
};
}  // namespace ControllerEmu