13 lines
339 B
C#
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>();
|
|
}
|
|
} |