Interface IRaisable<T>
- Namespace
- ElectricDrill.SoapRpgFramework.Events
- Assembly
- com.electricdrill.soap-rpg-framework.Runtime.dll
Interface for objects that can be raised with one parameter of type T. Defines the contract for events that carry a single piece of data.
public interface IRaisable<T>
Type Parameters
TThe type of data this raisable object carries.
Methods
Raise(T)
Raises the event with the specified context.
void Raise(T context)
Parameters
contextTThe data to pass when raising the event.