trouble-in-terror-town/Assets/Scripts/Player/Character/PlayerGhost.cs
Mikolaj a299230ab6 Tweaked movement values and added spectator "mode"
I tweaked a bit movement values and changed some variable names, I also added spectator "mode" (mode changing not implemented yet)
2022-05-04 02:22:06 +02:00

27 lines
460 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TTTSC.Player.Character
{
public class PlayerGhost : MonoBehaviour
{
public PlayerGhostReffrenceHub _playerGhostReffrenceHub;
public int shoopCoins;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}
}