Files
TheAuction-GS/Assets/Player/BasicCharacter.cs
2024-10-14 10:30:38 +02:00

13 lines
339 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BasicCharacter : MonoBehaviour
{
protected MovementBehaviour _movementBehaviour;
// Start is called before the first frame update
protected virtual void Awake()
{
_movementBehaviour = GetComponent<MovementBehaviour>();
}
}