using System.Collections; using System.Collections.Generic; using UnityEngine; public class AnswerLineInfoPlayerButton : MonoBehaviour { string playerName; string buttonText; public string PlayerName { get => playerName; set => playerName = value; } public string ButtonText { get => buttonText; set => buttonText = value; } }