mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-23 22:37:55 +02:00
Merge branch 'develop' into battleonly
This commit is contained in:
@@ -616,6 +616,20 @@ struct DLL_LINKAGE ChangeFormation : public CPackForClient
|
||||
}
|
||||
};
|
||||
|
||||
struct DLL_LINKAGE ChangeTownName : public CPackForClient
|
||||
{
|
||||
ObjectInstanceID tid;
|
||||
std::string name;
|
||||
|
||||
void visitTyped(ICPackVisitor & visitor) override;
|
||||
|
||||
template <typename Handler> void serialize(Handler & h)
|
||||
{
|
||||
h & tid;
|
||||
h & name;
|
||||
}
|
||||
};
|
||||
|
||||
struct DLL_LINKAGE RemoveObject : public CPackForClient
|
||||
{
|
||||
RemoveObject() = default;
|
||||
|
||||
Reference in New Issue
Block a user