trouble-in-terror-town/Assets/Scripts/Player/Character/AliveReffrenceHub.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

15 lines
452 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TTTSC.Player.Character
{
public class AliveReffrenceHub : MonoBehaviour
{
public Controller.CharacterMovementConfig characterMovementConfig;
public Controller.CharacterStateMachine characterStateMachine;
public Controller.GroundCheck characterHover;
public Controller.CharacterStateChanger characterStateChanger;
}
}