Plasma Engine  2.0
Loading...
Searching...
No Matches
ControllerInput.h
1#pragma once
2
3#include <Core/CoreDLL.h>
4
6
7class PL_CORE_DLL plControllerInput
8{
9public:
10 // \brief Returns if a global controller input device exists.
11 static bool HasDevice();
12
13 // \brief Returns the global controller input device. May be nullptr.
14 static plInputDeviceController* GetDevice();
15
16 // \brief Set the global controller input device.
17 static void SetDevice(plInputDeviceController* pDevice);
18};
Definition ControllerInput.h:8
This class is the base class for all controller type input devices.
Definition Controller.h:12