19 lines
360 B
C#
19 lines
360 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class InterdimensionalCharacterController : MonoBehaviour
|
|
{
|
|
public int CurrentAmountOfGhostModeEnterance = 0;
|
|
|
|
public virtual void OnEnterGhostMode()
|
|
{
|
|
CurrentAmountOfGhostModeEnterance++;
|
|
}
|
|
|
|
public virtual void OnExitGhostMode()
|
|
{
|
|
|
|
}
|
|
}
|