Files
PDModdingCommunity_PD-Loader/source-code/source/plugins/TLAC/Input/DirectInput/Controller.h
T
2019-07-30 13:48:28 +02:00

12 lines
167 B
C++

#pragma once
#include "DirectInputDevice.h"
namespace TLAC::Input
{
class Controller : public DirectInputDevice
{
protected:
Controller();
~Controller();
};
}