trouble-in-terror-town/Assets/Scripts/Player/Character/AliveReffrenceHub.cs
Mikolaj 2bbacbea09 did some more work on networking and removed EOS in favor of LRM
did some more work on networking and removed EOS in favor of Light Reflective Mirror
2022-05-31 15:04:31 +02:00

17 lines
454 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;
}
}