Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@

#include "NintendoSwitch/Controllers/Procon/NintendoSwitch_ProController.h"
#include "NintendoSwitch/Controllers/Joycon/NintendoSwitch_Joycon.h"
#include "Controllers/StandardHid/StandardHid_Keyboard.h"

namespace PokemonAutomation{


template class SuperControlSession<NintendoSwitch::ProController>;
template class SuperControlSession<NintendoSwitch::JoyconController>;
template class SuperControlSession<StandardHid::Keyboard>;


}
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@

#include "Common/Cpp/Containers/Pimpl.tpp"
#include "CommonTools/Async/InterruptableCommands.tpp"
#include "CommonTools/Async/SuperControlSession.tpp"
#include "ControllerInput/ControllerInput.h"
#include "ControllerInput/Keyboard/KeyboardInput_State.h"
#include "ControllerInput/Keyboard/KeyboardInput_KeyMappings.h"
#include "Controllers/ControllerState.h"
#include "StandardHid_Keyboard.h"

Expand All @@ -21,7 +19,6 @@ namespace PokemonAutomation{

// Instantiate some template helper classes.
template class AsyncCommandSession<StandardHid::Keyboard>;
template class SuperControlSession<StandardHid::Keyboard>;

namespace StandardHid{

Expand Down
Loading