mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-18 23:51:28 +00:00
15 lines
222 B
C++
15 lines
222 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"; }
|
|
};
|
|
}
|
|
} |