-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrected to run right before Load is called Now patches HacknetChainloader with ILManipulator instead Actually compile the Pathfinder.Meta.Load namespace Made EventAttribute able to function on Types as well If an EventAttribute is on a type, checks type for any applicable event methods Valid methods are static void methods whose only parameter is of type PathfinderEvent Can ignore specific events for a auto-register with IgnoreEventAttribute Renamed Meta.Load.ComputerExecutor to ComputerExecutorAttribute
- Loading branch information
1 parent
d35e48f
commit 3cf0f1c
Showing
5 changed files
with
73 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using System; | ||
namespace Pathfinder.Meta.Load | ||
{ | ||
[AttributeUsage(AttributeTargets.Method)] | ||
public class IgnoreEventAttribute : System.Attribute | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters