mirror of
https://github.com/Maschell/libgui-sdl.git
synced 2024-11-16 21:19:19 +01:00
12 lines
241 B
C++
12 lines
241 B
C++
#pragma once
|
|
|
|
#include "SDLControllerWiiUGamepad.h"
|
|
|
|
class SDLControllerWiiUProContoller : public SDLControllerWiiUGamepad {
|
|
public:
|
|
explicit SDLControllerWiiUProContoller(int32_t channel) : SDLControllerWiiUGamepad(channel){
|
|
|
|
}
|
|
};
|
|
|