12 lines
No EOL
229 B
C#
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();
|
|
} |