17 lines
212 B
C#
17 lines
212 B
C#
using UnityEngine;
|
|
|
|
public class PlayerMeter : MonoBehaviour{
|
|
public bool inGoHard;
|
|
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|