wip: created models dir, made some adjustments

wip, healing via item is not working the way it's supposed to
This commit is contained in:
2025-09-09 12:35:03 -04:00
parent 30c0ef4bf4
commit bb6f6b8498
2 changed files with 33 additions and 11 deletions

17
Models/ServerPlayer.cs Normal file
View File

@@ -0,0 +1,17 @@
using Terraria.ID;
using TShockAPI;
namespace TerrariaHealingPlugin.Models
{
public class ServerPlayer
{
public TSPlayer player { get; set; }
public int healAmount { get; set; } = 0;
public int healItem { get; set; } = ItemID.None;
public ServerPlayer(TSPlayer player)
{
this.player = player;
}
}
}