MessageHandler_T_(T).md
March 19, 2022 ยท View on GitHub
DefaultEcs
DefaultEcs
MessageHandler(T) Delegate
Encapsulates a method that has a single in parameter and does not return a value used for Subscribe<T>(MessageHandler<T>) method.
public delegate void MessageHandler<T>(in T message);
Type parameters
T
The type of the parameter of the method that this delegate encapsulates.
Parameters
message T
The parameter of the method that this delegate encapsulates.