mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-24 02:24:08 +00:00
15 lines
240 B
C++
15 lines
240 B
C++
#include <patch/patch.h>
|
|
|
|
namespace EQ
|
|
{
|
|
namespace Patches
|
|
{
|
|
class LoginSoDPatch : public BasePatch
|
|
{
|
|
public:
|
|
LoginSoDPatch();
|
|
virtual ~LoginSoDPatch();
|
|
virtual std::string GetName() const { return "Login SoD+"; }
|
|
};
|
|
}
|
|
} |