summaryrefslogtreecommitdiffstats
path: root/src/PatchedClonkParser.hpp
blob: 1d5a34ac84ffc8bdbead242ea98919ad4cf32451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "ClonkInterface.hpp"

class PatchedClonkParser : public ClonkParser
{
public:
    PatchedClonkParser(CRSMSession& session);

    void parseMessage(const QString& line);

protected:
    ClientInfo& getClientInfo(const QString& pcName, const QString& user);
};