Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TilePlacementHooksModule.cs
Go to the documentation of this file.
2
3namespace Terraria.Modules;
4
6{
8
10
12
14
16 {
17 if (copyFrom == null)
18 {
19 check = default(PlacementHook);
23 }
24 else
25 {
26 check = copyFrom.check;
27 postPlaceEveryone = copyFrom.postPlaceEveryone;
28 postPlaceMyPlayer = copyFrom.postPlaceMyPlayer;
29 placeOverride = copyFrom.placeOverride;
30 }
31 }
32}
TilePlacementHooksModule(TilePlacementHooksModule copyFrom=null)