Add party to lobby menu

This commit is contained in:
2024-09-09 20:21:03 +02:00
parent 8529ebb4a9
commit 9250b7b5dd
13 changed files with 4207 additions and 1078 deletions

View File

@@ -0,0 +1,9 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public struct PlayerInfo
{
public string Name;
public Sprite Image;
}