mirror of
https://github.com/Campofinale/CampofinaleBackup.git
synced 2025-12-18 00:34:35 +00:00
16 lines
291 B
C#
16 lines
291 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Campofinale.Game
|
|
{
|
|
public class Team
|
|
{
|
|
public string name = "";
|
|
public ulong leader;
|
|
public List<ulong> members = new();
|
|
}
|
|
}
|