mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
remove custom events
This commit is contained in:
parent
6ac905b03f
commit
8f7b0b8a53
@ -1,17 +1,16 @@
|
||||
using UnityEngine;
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace QSB
|
||||
{
|
||||
public delegate void InputEvent();
|
||||
|
||||
public class QSBInputManager : MonoBehaviour
|
||||
{
|
||||
public static event InputEvent ChertTaunt;
|
||||
public static event InputEvent EskerTaunt;
|
||||
public static event InputEvent RiebeckTaunt;
|
||||
public static event InputEvent GabbroTaunt;
|
||||
public static event InputEvent FeldsparTaunt;
|
||||
public static event InputEvent ExitTaunt;
|
||||
public static event Action ChertTaunt;
|
||||
public static event Action EskerTaunt;
|
||||
public static event Action RiebeckTaunt;
|
||||
public static event Action GabbroTaunt;
|
||||
public static event Action FeldsparTaunt;
|
||||
public static event Action ExitTaunt;
|
||||
|
||||
// TODO : finish instruments - disabled for 0.7.0 release
|
||||
/*
|
||||
|
@ -1,13 +1,12 @@
|
||||
using UnityEngine;
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace QSB.Utility
|
||||
{
|
||||
public delegate void EnableDisableEvent();
|
||||
|
||||
public class OnEnableDisableTracker : MonoBehaviour
|
||||
{
|
||||
public event EnableDisableEvent OnEnableEvent;
|
||||
public event EnableDisableEvent OnDisableEvent;
|
||||
public event Action OnEnableEvent;
|
||||
public event Action OnDisableEvent;
|
||||
|
||||
public MonoBehaviour AttachedComponent;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user