14 lines
257 B
C#
14 lines
257 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
using UnityEngine.UI;
|
|||
|
|
|||
|
public class UIImgChar : MonoBehaviour
|
|||
|
{
|
|||
|
public char _Char;
|
|||
|
public Sprite _Image;
|
|||
|
|
|||
|
public float _CharWidth;
|
|||
|
public float _CharHeight;
|
|||
|
}
|