12 lines
205 B
C#
12 lines
205 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class Toast : MonoBehaviour {
|
|
|
|
public Text textElement;
|
|
public Image iconElement;
|
|
|
|
}
|