This commit is contained in:
2024-10-14 10:30:38 +02:00
commit ec487096bf
167 changed files with 16245 additions and 0 deletions

View 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>();
}
}