8-4-25 @ 2:42 am

This commit is contained in:
2025-08-04 02:42:51 -04:00
parent 50e4f8fcb5
commit 7f65338679
15 changed files with 357 additions and 250 deletions

View File

@@ -4,8 +4,14 @@ using System;
public partial class ManagerPanel : Panel
{
public bool _hovered = false;
public int _returnCount = 0;
public void SetManager(Manager MANAGER)
{
SetPosition(new Vector2(100, 150));
SetSprite(MANAGER._imagePath);
SetValue(MANAGER._health);
SetMax(MANAGER._healthMax);
}
public void SetPosition(Vector2 POSITION)
{
Position = POSITION;