mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
* Services Folder Cleanup * using and VS cleanup of the Mobile folder. * using VS cleanup of Items
19 lines
No EOL
421 B
C#
19 lines
No EOL
421 B
C#
namespace Server.Items
|
|
{
|
|
interface IDurability
|
|
{
|
|
bool CanFortify { get; }
|
|
int InitMinHits { get; }
|
|
int InitMaxHits { get; }
|
|
int HitPoints { get; set; }
|
|
int MaxHitPoints { get; set; }
|
|
void ScaleDurability();
|
|
|
|
void UnscaleDurability();
|
|
}
|
|
|
|
interface IWearableDurability : IDurability
|
|
{
|
|
int OnHit(BaseWeapon weapon, int damageTaken);
|
|
}
|
|
} |