Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
SplashText.cs
Go to the documentation of this file.
1using TMPro;
2using UnityEngine;
3
4public class SplashText : MonoBehaviour
5{
6 public TextMeshProUGUI textBig;
7
8 public TextMeshProUGUI textSmall;
9
10 public static SplashText Instance;
11
12 private void Awake()
13 {
14 Instance = this;
15 }
16}
TextMeshProUGUI textSmall
Definition: SplashText.cs:8
TextMeshProUGUI textBig
Definition: SplashText.cs:6
void Awake()
Definition: SplashText.cs:12
static SplashText Instance
Definition: SplashText.cs:10