finally get pathfinding done?

This commit is contained in:
reisenlol 2026-01-10 02:37:44 -08:00
parent 7b151c1a53
commit 7bd61df481
No known key found for this signature in database
23 changed files with 1408 additions and 785 deletions

15
Assets/Scripts/Weapon.cs Normal file
View file

@ -0,0 +1,15 @@
using UnityEngine;
public class Weapon : MonoBehaviour
{
public PlayerEntity thisEntity;
public virtual void TryAttack()
{
AttackEffects();
}
protected virtual void AttackEffects()
{
}
}