Batman
This commit is contained in:
13
Assets/Player/BasicCharacter.cs
Normal file
13
Assets/Player/BasicCharacter.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user