Lift RawController code

This commit is contained in:
Jaby
2024-01-02 20:18:40 -06:00
parent fc646f1b1b
commit dbbec16acf
5 changed files with 163 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
#include <PSX/Periphery/periphery.hpp>
#include <stdio.h>
namespace JabyEngine {
namespace Periphery {
RawController controller[1][1];
void query_controller() {
printf("Needs implementation\n");
}
}
}