12345678910111213141516171819202122232425262728293031 |
- using UnityEngine;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- namespace TMPro
- {
-
- [Serializable]
- public class TMP_Sprite : TMP_TextElement_Legacy
- {
-
-
- public string name;
- public int hashCode;
- public int unicode;
-
-
-
-
- public Vector2 pivot;
-
-
-
-
- public Sprite sprite;
- }
- }
|