Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Mapping.cs
Go to the documentation of this file.
2
3internal abstract class Mapping
4{
5 private bool _isSoap;
6
7 internal bool IsSoap
8 {
9 get
10 {
11 return _isSoap;
12 }
13 set
14 {
15 _isSoap = value;
16 }
17 }
18
19 internal Mapping()
20 {
21 }
22
24 {
25 _isSoap = mapping._isSoap;
26 }
27}