mirror of
https://github.com/zeldaret/ss.git
synced 2024-12-04 11:54:36 +00:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
20 lines
315 B
C++
20 lines
315 B
C++
#ifndef M_PAD_H
|
|
#define M_PAD_H
|
|
|
|
#include "egg/core/eggController.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
|