18 lines
307 B
C#
18 lines
307 B
C#
|
|
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)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|