mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-19 14:03:52 +00:00
15 lines
259 B
C++
15 lines
259 B
C++
#include <patch/patch.h>
|
|
|
|
namespace EQ
|
|
{
|
|
namespace Patches
|
|
{
|
|
class LoginTitaniumPatch : public BasePatch
|
|
{
|
|
public:
|
|
LoginTitaniumPatch();
|
|
virtual ~LoginTitaniumPatch();
|
|
virtual std::string GetName() const { return "Login Titanium"; }
|
|
};
|
|
}
|
|
} |