Implement even more inventory/UI stuff

This commit is contained in:
2024-09-10 01:22:34 -07:00
parent 911f75da14
commit 62a9f99b81
18 changed files with 79 additions and 51 deletions

View File

@@ -3,10 +3,8 @@ using Godot;
public interface IHitbox : IArea3D
{
public int Damage { get; set; }
}
public partial class Hitbox : Area3D, IHitbox
{
public int Damage { get; set; }
}