mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-28 23:03:52 +00:00
15 lines
243 B
C++
15 lines
243 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+"; }
|
|
};
|
|
}
|
|
} |