Table of Contents

Interface IExpSource

Namespace
ElectricDrill.SoapRpgFramework.Experience
Assembly
com.electricdrill.soap-rpg-framework.Runtime.dll

Interface for objects that can provide experience points. Defines the contract for experience sources that can be harvested.

public interface IExpSource

Properties

Exp

Gets the experience points available from this source. The behavior may vary based on implementation and harvest state.

long Exp { get; }

Property Value

long

Harvested

Gets or sets whether this experience source has been harvested. Used to track if the experience has already been collected.

bool Harvested { get; set; }

Property Value

bool