mirror of
https://github.com/araxiaonline/mod-mythic-plus.git
synced 2026-06-13 03:02:24 -04:00
20 lines
363 B
C++
20 lines
363 B
C++
#include "MpLogger.h"
|
|
#include "ScriptMgr.h"
|
|
|
|
// make sure this is the new way to do this, i think it's the old busted shit
|
|
class MythicPlus_CommandScript : public CommandScript
|
|
{
|
|
public:
|
|
MythicPlus_CommandScript() : CommandScript("MythicPlus_CommandScript")
|
|
{
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
void Add_MP_CommandScripts()
|
|
{
|
|
MpLogger::debug("Add_MP_CommandScripts()");
|
|
}
|