Add Hid3DS

This commit is contained in:
2026-09-06 14:21:30 +02:00
parent 4488425a94
commit 42c669de55
7 changed files with 108 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
#pragma once
#include <pd/drivers/hid.hpp>
namespace PD {
class Hid3DS : public HidDriver {
public:
Hid3DS();
~Hid3DS();
void Update() override;
private:
struct Impl;
Impl* impl;
};
} // namespace PD
+2 -1
View File
@@ -7,4 +7,5 @@
#include <pd_system/gfx_opengl3.hpp>
// Hid
#include <pd_system/hid_glfw.hpp>
#include <pd_system/hid_3ds.hpp>
#include <pd_system/hid_glfw.hpp>