11 lines
212 B
C#
11 lines
212 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
using UnityEngine.UI;
|
|
|
|
public class objectiveIconInfo : MonoBehaviour
|
|
{
|
|
public GameObject onScreenIcon;
|
|
public GameObject offScreenIcon;
|
|
public Text iconText;
|
|
}
|