revival/game/Assets/Scripts/Artefacts/EventHandler.cs

33 lines
556 B
C#
Raw Normal View History

using Ktyl.Util;
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class EventHandler : MonoBehaviour
{
public static EventHandler current;
private void Awake()
{
current = this;
}
public event Action<int> onArtefactPickUp;
public void ArtefactPickUp(int id)
{
if (onArtefactPickUp != null)
{
onArtefactPickUp(id);
}
}
2021-03-01 19:09:21 +01:00
public event Action onArtefactUI;
public void ArtefactUI()
{
onArtefactUI();
}
}