mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
Better name
This commit is contained in:
parent
ff056707d4
commit
2f8125ef70
@ -144,19 +144,19 @@ public static bool WriteArguments(ILProcessor worker, MethodDefinition md, strin
|
||||
}
|
||||
|
||||
// mark / check type as processed //////////////////////////////////////
|
||||
const string MirrorProcessedFunction = "MirrorProcessed";
|
||||
public const string ProcessedFunctionName = "MirrorProcessed";
|
||||
|
||||
// by adding an empty MirrorProcessed() function
|
||||
public static bool WasProcessed(TypeDefinition td)
|
||||
{
|
||||
return td.Methods.Any(method => method.Name == MirrorProcessedFunction);
|
||||
return td.Methods.Any(method => method.Name == ProcessedFunctionName);
|
||||
}
|
||||
|
||||
public static void MarkAsProcessed(TypeDefinition td)
|
||||
{
|
||||
if (!WasProcessed(td))
|
||||
{
|
||||
MethodDefinition versionMethod = new MethodDefinition(MirrorProcessedFunction, MethodAttributes.Private, Weaver.voidType);
|
||||
MethodDefinition versionMethod = new MethodDefinition(ProcessedFunctionName, MethodAttributes.Private, Weaver.voidType);
|
||||
ILProcessor worker = versionMethod.Body.GetILProcessor();
|
||||
worker.Append(worker.Create(OpCodes.Ret));
|
||||
td.Methods.Add(versionMethod);
|
||||
|
Loading…
Reference in New Issue
Block a user