mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-07-05 06:42:57 +12:00
Initial CPP implementation
This commit is contained in:
parent
ce356c6e61
commit
382c0f953d
14 changed files with 658 additions and 184 deletions
14
include/services/ir/circlepad_pro.hpp
Normal file
14
include/services/ir/circlepad_pro.hpp
Normal file
|
@ -0,0 +1,14 @@
|
|||
#pragma once
|
||||
#include "services/ir/ir_device.hpp"
|
||||
#include "services/ir/ir_types.hpp"
|
||||
|
||||
namespace IR {
|
||||
class CirclePadPro : public IR::Device {
|
||||
public:
|
||||
virtual void connect() override;
|
||||
virtual void disconnect() override;
|
||||
virtual void receivePayload(Payload payload) override;
|
||||
|
||||
CirclePadPro(SendCallback sendCallback) : IR::Device(sendCallback) {}
|
||||
};
|
||||
} // namespace IR
|
Loading…
Add table
Add a link
Reference in a new issue