Files

18 lines
307 B
C#
Raw Permalink Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class customActionOpenMenuSystem : MonoBehaviour
{
[Header ("Main Settings")]
[Space]
public bool customActionEnabled = true;
public virtual void openOrCloseMenu (bool state, GameObject currentPlayer)
{
}
}