mirror of
https://github.com/gligli/nulldc-360.git
synced 2025-04-02 11:11:56 -04:00
20 lines
No EOL
381 B
C
20 lines
No EOL
381 B
C
#pragma once
|
|
#include "types.h"
|
|
#include "plugins/plugin_manager.h"
|
|
|
|
//NEVER touch this name, it was inspired by the great Z
|
|
struct eMDevInf
|
|
{
|
|
MapleDeviceDefinition* mdd;
|
|
bool Created;
|
|
bool Inited;
|
|
};
|
|
extern eMDevInf MapleDevices_dd[4][6];
|
|
|
|
extern maple_device_instance MapleDevices[4];
|
|
|
|
void maple_Init();
|
|
void maple_Reset(bool Manual);
|
|
void maple_Term();
|
|
|
|
void maple_vblank(); |