This commit is contained in:
aozhiwei 2022-10-24 15:58:10 +08:00
parent f36a675aac
commit feb5099c63

View File

@ -6,7 +6,17 @@
#include "matchteam.h"
class TeamGroup;
class MatchTeamNew
{
public:
std::shared_ptr<TeamGroup> group;
};
class TeamGroup
{
public:
std::map<std::string, MatchTeamNew*> teams;
};