mirror of
https://git.muiegratis.online/suikoakari/Campofinale
synced 2025-12-15 19:14:36 +01:00
10 lines
174 B
C#
10 lines
174 B
C#
namespace Campofinale.Game
|
|
{
|
|
public class Team
|
|
{
|
|
public string name = "";
|
|
public ulong leader;
|
|
public List<ulong> members = new();
|
|
}
|
|
}
|