server-master/srcs/WingsAPI.Game/Battle/Managers/IChargeManager.cs
2026-02-10 18:21:30 +01:00

12 lines
No EOL
229 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Game.Battle.Managers;
public interface IChargeComponent
{
public void SetCharge(int chargeValue);
public int GetCharge();
public void ResetCharge();
}