23 lines
348 B
C++
23 lines
348 B
C++
// Copyright (C) 2007-2025 EQ2EMulator
|
|
// Licensed under GPL v3
|
|
|
|
#include "emu_opcodes.h"
|
|
|
|
const char *OpcodeNames[_maxEmuOpcode+1] = {
|
|
"OP_Unknown",
|
|
|
|
//a preprocessor hack so we dont have to maintain two lists
|
|
#define N(x) #x
|
|
#if !defined(LOGIN)
|
|
#include "emu_oplist.h"
|
|
#endif
|
|
#ifdef LOGIN
|
|
#include "login_oplist.h"
|
|
#endif
|
|
#undef N
|
|
|
|
""
|
|
};
|
|
|
|
|