13 lines
252 B
C#
13 lines
252 B
C#
|
using UnityEngine;
|
||
|
using UnityEngine.UI;
|
||
|
|
||
|
public class QuestMarker : MonoBehaviour
|
||
|
{
|
||
|
public Sprite icon;
|
||
|
public Image image;
|
||
|
|
||
|
public Vector2 position {
|
||
|
get { return new Vector2(transform.position.x, transform.position.z); }
|
||
|
}
|
||
|
}
|