21 lines
239 B
C++
21 lines
239 B
C++
#pragma once
|
|
|
|
#include "battledatacontext.h"
|
|
|
|
#include "matchteam.h"
|
|
|
|
class TeamGroup;
|
|
class MatchTeamNew
|
|
{
|
|
public:
|
|
std::shared_ptr<TeamGroup> group;
|
|
|
|
};
|
|
|
|
class TeamGroup
|
|
{
|
|
public:
|
|
std::map<std::string, MatchTeamNew*> teams;
|
|
|
|
};
|