blob: 3d89dda2ba055d04d56b8768cc3854d65d4aedd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using UnityEngine;
public class LanguageButton : MonoBehaviour
{
public TextRenderer Title;
public PassiveButton Button;
[HideInInspector]
public TextAsset Language;
}
|