40 lines
1.0 KiB
C#
40 lines
1.0 KiB
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class userSettings : MonoBehaviour
|
|
{
|
|
[Header("Inspector")]
|
|
[Tooltip("Documentation text normalized.")]
|
|
public Text user_login_source_text;
|
|
[Tooltip("Documentation text normalized.")]
|
|
public Text user_source_uid_text;
|
|
|
|
[Header("Inspector")]
|
|
[Tooltip("Documentation text normalized.")]
|
|
public Dropdown language_dropdown;
|
|
|
|
[Header("Inspector")]
|
|
[Tooltip("Documentation text normalized.")]
|
|
public Button export_saveData_button;
|
|
[Tooltip("Documentation text normalized.")]
|
|
public Button import_saveData_button;
|
|
[Tooltip("Documentation text normalized.")]
|
|
public Button clearup_saveData_button;
|
|
|
|
[Header("Inspector")]
|
|
[Tooltip("Documentation text normalized.")]
|
|
public Button view_detailedHighlight_button;
|
|
|
|
// Start is called once before the first execution of Update after the MonoBehaviour is created
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|