-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMathsDecoder.cs
More file actions
34 lines (33 loc) · 1.08 KB
/
Copy pathMathsDecoder.cs
File metadata and controls
34 lines (33 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using dnlib.DotNet;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Maths
{
public class MathsDecoder
{
public static void Decode(ModuleDefMD module)
{
Log10.RemovedMutations(module);
Log.RemovedMutations(module);
//Cos.RemovedMutations(module);
Truncate.RemovedMutations(module);
Floor.RemovedMutations(module);
Round.RemoveMutations(module);
DoubleParse.RemoveMutations(module);
Length.RemoveMutations(module);
EmpyTypes.RemoveMutations(module);
Abs.RemoveMutations(module);
SizeOf.RemoveMutations(module);
Add.RemoveMutations(module);
Sub.RemoveMutations(module);
Mul.RemoveMutations(module);
Div.RemoveMutations(module);
ToInt32.RemoveMutations(module);
Xor.RemoveMutations(module);
Ldci4ToConvi4Handler.Fix(module);
}
}
}