AnswerLineInfoPlayerButton.cs 360 B

123456789101112
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class AnswerLineInfoPlayerButton : MonoBehaviour
  5. {
  6. string playerName;
  7. string buttonText;
  8. public string PlayerName { get => playerName; set => playerName = value; }
  9. public string ButtonText { get => buttonText; set => buttonText = value; }
  10. }