Files
dungeons/Assets/Scripts/Data/PlayerInfo.cs

11 lines
189 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public struct PlayerInfo
{
public string Name;
public Sprite Image;
public bool isLocalPlayer;
}