Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AnchorDataModule.cs
Go to the documentation of this file.
2
4
5public class AnchorDataModule
6{
7 public AnchorData top;
8
10
12
14
15 public bool wall;
16
17 public AnchorDataModule(AnchorDataModule copyFrom = null)
18 {
19 if (copyFrom == null)
20 {
21 top = default(AnchorData);
22 bottom = default(AnchorData);
23 left = default(AnchorData);
24 right = default(AnchorData);
25 wall = false;
26 }
27 else
28 {
29 top = copyFrom.top;
30 bottom = copyFrom.bottom;
31 left = copyFrom.left;
32 right = copyFrom.right;
33 wall = copyFrom.wall;
34 }
35 }
36}
AnchorDataModule(AnchorDataModule copyFrom=null)