This repository has been archived on 2025-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
Net.Like.Xue.Tokyo/Assets/Plugins/ParadoxNotion/NodeCanvas/_DeprecatedFiles/Legacy_EventReceiverAttribu...

13 lines
577 B
C#

namespace NodeCanvas.Framework
{
[System.AttributeUsage(System.AttributeTargets.Class)]
[System.Obsolete("[EventReceiver] is no longer used. Please use the '.router' property to subscribe/unsubscribe to events (in OnExecute/OnStop for actions and OnEnable/OnDisable for conditions). For custom events, use '.router.onCustomEvent'.")]
public class EventReceiverAttribute : System.Attribute
{
readonly public string[] eventMessages;
public EventReceiverAttribute(params string[] args) {
this.eventMessages = args;
}
}
}