mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-18 11:21:29 +00:00
15 lines
225 B
C++
15 lines
225 B
C++
#include "../patch/patch.h"
|
|
|
|
namespace EQ
|
|
{
|
|
namespace Patches
|
|
{
|
|
class ChatPatch : public BasePatch
|
|
{
|
|
public:
|
|
ChatPatch();
|
|
virtual ~ChatPatch();
|
|
virtual std::string GetName() const { return "Chat"; }
|
|
};
|
|
}
|
|
} |