mirror of
https://github.com/Gericom/FastVideoDSPlayer.git
synced 2025-06-18 18:45:34 -04:00
12 lines
176 B
C++
12 lines
176 B
C++
#pragma once
|
|
#include "InputProvider.h"
|
|
|
|
class PadInputProvider : public InputProvider
|
|
{
|
|
public:
|
|
u16 SampleIntern()
|
|
{
|
|
return keysCurrent();
|
|
}
|
|
};
|