1 sharedlibrarycoreinterfaces IRegisterEvent
RaidMax edited this page 2023-05-20 22:09:21 -05:00

IRegisterEvent Public interface

Description

interface defining the capabilities of a custom event registration

Diagram

  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

Members

Properties

Public properties

Type Name Methods
IEnumerable<(string Item1, string Item2, Func<string, IEventParserConfiguration, GameEvent, GameEvent> Item3)> Events
collection of custom event registrations (Subtype, trigger value, event generator)
get

Details

Summary

interface defining the capabilities of a custom event registration

Properties

Events

public IEnumerable<(string Item1, string Item2, Func<string, IEventParserConfiguration, GameEvent, GameEvent> Item3)> Events { get; }
Summary

collection of custom event registrations (Subtype, trigger value, event generator)

Generated with ModularDoc