mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-27 22:49:25 +02:00
Merge branch 'develop' into feature/nullkiller2
This commit is contained in:
@@ -614,6 +614,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