-
-
Notifications
You must be signed in to change notification settings - Fork 37
Modifications About
Hussein Farran edited this page Dec 23, 2016
·
1 revision
Note: This page is a work in progress.
Modifications are C# projects which implement classes inheriting from ModificationBase
. Modifications are automatically applied to the target assembly by the patcher. Modifications are typically used to insert hooks into the Terraria assembly. Hooks are simply callbacks which are invoked when their hook point is called. Typically hooks will be present before and after their hook point. That means that a hook may have a Begin
variant which is called before its hook point. It also includes the possibility of an End
variant which is called after its hook point has finished invocation.