Merge pull request #47 from robojumper/m_pad

m_pad
This commit is contained in:
Elijah Thomas
2024-05-31 20:10:22 -04:00
committed by GitHub
9 changed files with 232 additions and 34 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef M_PAD_H
#define M_PAD_H
namespace mPad {
extern EGG::CoreControllerMgr *g_padMg;
extern int g_currentCoreId;
extern EGG::CoreController *g_currentCore;
extern EGG::CoreController *g_core[4];
void create();
void beginPad();
void endPad();
} // namespace mPad
#endif