C# Class Patcher.Patcher

显示文件 Open project: Jonesey13/TF-8-Player Class Usage Examples

Public Methods

Method Description
CallRealBase ( ) : void

Marker method for calling the base implementation of a patched method

Main ( string args ) : int
Patch ( string modModulePath ) : void

Inline classes marked as [Patch], copying fields and replacing method implementations. As you can probably guess from the code, this is wholly incomplete and will certainly break and have to be extended in the future.

Private Methods

Method Description
MakeIntermediateImage ( ) : void

publicize

MakeReferenceImage ( ) : void

Unseal, publicize, virtualize.

Method Details

CallRealBase() public static method

Marker method for calling the base implementation of a patched method
public static CallRealBase ( ) : void
return void

Main() public static method

public static Main ( string args ) : int
args string
return int

Patch() public static method

Inline classes marked as [Patch], copying fields and replacing method implementations. As you can probably guess from the code, this is wholly incomplete and will certainly break and have to be extended in the future.
public static Patch ( string modModulePath ) : void
modModulePath string
return void