Sync weapon equip to hitbox damage

This commit is contained in:
2024-09-01 16:34:33 -07:00
parent 5b110845e9
commit dc3639ad6e
8 changed files with 49 additions and 27 deletions

12
src/hitbox/Hitbox.cs Normal file
View File

@@ -0,0 +1,12 @@
using Chickensoft.GodotNodeInterfaces;
using Godot;
public interface IHitbox : IArea3D
{
public int Damage { get; set; }
}
public partial class Hitbox : Area3D, IHitbox
{
public int Damage { get; set; }
}