diff --git a/Il2CppInspector/FileFormatReader.cs b/Il2CppInspector/FileFormatReader.cs index 6883040..c03d22c 100644 --- a/Il2CppInspector/FileFormatReader.cs +++ b/Il2CppInspector/FileFormatReader.cs @@ -7,7 +7,6 @@ using System; using System.Collections.Generic; using System.IO; -using System.Runtime.CompilerServices; using NoisyCowStudios.Bin2Object; namespace Il2CppInspector diff --git a/Il2CppInspector/FileFormatReaders/FormatLayouts/MachO.cs b/Il2CppInspector/FileFormatReaders/FormatLayouts/MachO.cs index 36d910d..e45f7c1 100644 --- a/Il2CppInspector/FileFormatReaders/FormatLayouts/MachO.cs +++ b/Il2CppInspector/FileFormatReaders/FormatLayouts/MachO.cs @@ -4,7 +4,6 @@ All rights reserved. */ -using System; using NoisyCowStudios.Bin2Object; namespace Il2CppInspector diff --git a/Il2CppInspector/FileFormatReaders/FormatLayouts/UB.cs b/Il2CppInspector/FileFormatReaders/FormatLayouts/UB.cs index 622aefa..a2aa4aa 100644 --- a/Il2CppInspector/FileFormatReaders/FormatLayouts/UB.cs +++ b/Il2CppInspector/FileFormatReaders/FormatLayouts/UB.cs @@ -4,9 +4,6 @@ All rights reserved. */ -using System; -using NoisyCowStudios.Bin2Object; - namespace Il2CppInspector { #pragma warning disable CS0649 diff --git a/Il2CppInspector/FileFormatReaders/PEReader.cs b/Il2CppInspector/FileFormatReaders/PEReader.cs index dd51a52..633f303 100644 --- a/Il2CppInspector/FileFormatReaders/PEReader.cs +++ b/Il2CppInspector/FileFormatReaders/PEReader.cs @@ -4,7 +4,6 @@ All rights reserved. */ -using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/Il2CppInspector/FileFormatReaders/UBReader.cs b/Il2CppInspector/FileFormatReaders/UBReader.cs index b418590..52e6aa2 100644 --- a/Il2CppInspector/FileFormatReaders/UBReader.cs +++ b/Il2CppInspector/FileFormatReaders/UBReader.cs @@ -4,10 +4,7 @@ All rights reserved. */ -using System; -using System.Collections.Generic; using System.IO; -using System.Linq; using NoisyCowStudios.Bin2Object; namespace Il2CppInspector diff --git a/Il2CppInspector/Il2CppBinaryClasses.cs b/Il2CppInspector/Il2CppBinaryClasses.cs index 62edc7d..da322ab 100644 --- a/Il2CppInspector/Il2CppBinaryClasses.cs +++ b/Il2CppInspector/Il2CppBinaryClasses.cs @@ -1,5 +1,10 @@ -using System; -using System.Linq; +/* + Copyright 2017 Perfare - https://github.com/Perfare/Il2CppDumper + Copyright 2017 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + + All rights reserved. +*/ + using NoisyCowStudios.Bin2Object; namespace Il2CppInspector diff --git a/Il2CppInspector/Il2CppInspector.cs b/Il2CppInspector/Il2CppInspector.cs index 6ac872e..f92c516 100644 --- a/Il2CppInspector/Il2CppInspector.cs +++ b/Il2CppInspector/Il2CppInspector.cs @@ -8,7 +8,6 @@ using System; using System.Collections.Generic; using System.IO; using System.Linq; -using System.Runtime.InteropServices; using System.Text; namespace Il2CppInspector diff --git a/Il2CppInspector/Il2CppReflector.cs b/Il2CppInspector/Il2CppReflector.cs index 26522fe..e5dd752 100644 --- a/Il2CppInspector/Il2CppReflector.cs +++ b/Il2CppInspector/Il2CppReflector.cs @@ -1,4 +1,9 @@ -using System; +/* + Copyright 2017 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + + All rights reserved. +*/ + using System.Collections.Generic; using System.Linq; using System.Reflection; diff --git a/Il2CppInspector/MetadataClasses.cs b/Il2CppInspector/MetadataClasses.cs index 1fdea61..761124d 100644 --- a/Il2CppInspector/MetadataClasses.cs +++ b/Il2CppInspector/MetadataClasses.cs @@ -1,7 +1,10 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; +/* + Copyright 2017 Perfare - https://github.com/Perfare/Il2CppDumper + Copyright 2017 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + + All rights reserved. +*/ + using NoisyCowStudios.Bin2Object; namespace Il2CppInspector diff --git a/Il2CppInspector/Reflection/Assembly.cs b/Il2CppInspector/Reflection/Assembly.cs index 708a459..83f0f00 100644 --- a/Il2CppInspector/Reflection/Assembly.cs +++ b/Il2CppInspector/Reflection/Assembly.cs @@ -1,4 +1,9 @@ -using System; +/* + Copyright 2017 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + + All rights reserved. +*/ + using System.Collections.Generic; using System.Linq; diff --git a/Il2CppInspector/Reflection/FieldInfo.cs b/Il2CppInspector/Reflection/FieldInfo.cs index 6c35ec2..1c3afba 100644 --- a/Il2CppInspector/Reflection/FieldInfo.cs +++ b/Il2CppInspector/Reflection/FieldInfo.cs @@ -1,3 +1,9 @@ +/* + Copyright 2017 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + + All rights reserved. +*/ + using System.Reflection; namespace Il2CppInspector.Reflection { diff --git a/Il2CppInspector/Reflection/MemberInfo.cs b/Il2CppInspector/Reflection/MemberInfo.cs index 75ca8c9..e3c586b 100644 --- a/Il2CppInspector/Reflection/MemberInfo.cs +++ b/Il2CppInspector/Reflection/MemberInfo.cs @@ -1,4 +1,10 @@ -using System.Collections.Generic; +/* + Copyright 2017 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + + All rights reserved. +*/ + +using System.Collections.Generic; using System.Reflection; namespace Il2CppInspector.Reflection { diff --git a/Il2CppInspector/Reflection/ReflectionClasses.cs b/Il2CppInspector/Reflection/ReflectionClasses.cs index 56f0a01..27ffa1d 100644 --- a/Il2CppInspector/Reflection/ReflectionClasses.cs +++ b/Il2CppInspector/Reflection/ReflectionClasses.cs @@ -1,5 +1,8 @@ -using System; -using System.Reflection; +/* + Copyright 2017 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + + All rights reserved. +*/ namespace Il2CppInspector.Reflection { diff --git a/Il2CppInspector/Reflection/TypeInfo.cs b/Il2CppInspector/Reflection/TypeInfo.cs index 593b494..dc36b74 100644 --- a/Il2CppInspector/Reflection/TypeInfo.cs +++ b/Il2CppInspector/Reflection/TypeInfo.cs @@ -1,4 +1,10 @@ -using System; +/* + Copyright 2017 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + + All rights reserved. +*/ + +using System; using System.Collections.Generic; using System.Linq; using System.Reflection;