mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-22 04:33:58 +00:00
15 lines
262 B
C++
15 lines
262 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"; }
|
|
};
|
|
}
|
|
} |