Interface IRaisable<T, U>
- Namespace
- ElectricDrill.SoapRpgFramework.Events
- Assembly
- com.electricdrill.soap-rpg-framework.Runtime.dll
Interface for objects that can be raised with two parameters of types T and U. Defines the contract for events that carry two pieces of data.
public interface IRaisable<T, U>
Type Parameters
TThe type of the first parameter.
UThe type of the second parameter.
Methods
Raise(T, U)
Raises the event with the specified contexts.
void Raise(T context1, U context2)
Parameters
context1TThe first parameter to pass when raising the event.
context2UThe second parameter to pass when raising the event.