Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
InternalModuleBuilder.cs
Go to the documentation of this file.
2
3internal sealed class InternalModuleBuilder : RuntimeModule
4{
6 {
7 }
8
9 public override bool Equals(object obj)
10 {
11 if (obj == null)
12 {
13 return false;
14 }
16 {
17 return this == obj;
18 }
19 return obj.Equals(this);
20 }
21
22 public override int GetHashCode()
23 {
24 return base.GetHashCode();
25 }
26}