-
-
Notifications
You must be signed in to change notification settings - Fork 49
sharedlibrarycoreinterfaces IRegisterEvent
RaidMax edited this page May 21, 2023
·
1 revision
interface defining the capabilities of a custom event registration
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IRegisterEvent[[IRegisterEvent]]
class SharedLibraryCore.Interfaces.IRegisterEvent interfaceStyle;
end
| Type | Name | Methods |
|---|---|---|
IEnumerable<(string Item1, string Item2, Func<string, IEventParserConfiguration, GameEvent, GameEvent> Item3)> |
Eventscollection of custom event registrations (Subtype, trigger value, event generator) |
get |
interface defining the capabilities of a custom event registration
public IEnumerable<(string Item1, string Item2, Func<string, IEventParserConfiguration, GameEvent, GameEvent> Item3)> Events { get; }collection of custom event registrations (Subtype, trigger value, event generator)
Generated with ModularDoc