Table of Contents

Interface IEquippable<T>

Namespace
FishMMO.Shared.Core
Assembly
FishMMO.Shared.dll

Interface for objects that can be equipped and unequipped by an owner of type T. Implement this to allow items or entities to be equipped by a character or other owner.

public interface IEquippable<T>

Type Parameters

T

The type of the owner that can equip this object.

Methods

Equip(T)

Equips the object to the specified owner.

void Equip(T owner)

Parameters

owner T

The entity or character equipping this object.

Unequip()

Unequips the object from its current owner.

void Unequip()