- Timestamp:
- Sep 4, 2018, 1:00:48 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/PersistentData/Attributes.cs
r273 r325 1 1 using System; 2 using System.Collections.Generic;3 using System.Runtime.Serialization;4 using System.Text.RegularExpressions;5 2 6 namespace AllocsFixes.PersistentData 7 { 3 namespace AllocsFixes.PersistentData { 8 4 [Serializable] 9 public class Attributes 10 { 5 public class Attributes { 11 6 private bool hideChatCommands; 12 7 private String hideChatCommandPrefix; 13 8 14 9 public bool HideChatCommands { 15 get { 16 return hideChatCommands; 17 } 18 set { 19 hideChatCommands = value; 20 } 10 get { return hideChatCommands; } 11 set { hideChatCommands = value; } 21 12 } 22 13 … … 26 17 hideChatCommandPrefix = ""; 27 18 } 19 28 20 return hideChatCommandPrefix; 29 21 } 30 set { 31 hideChatCommandPrefix = value; 32 } 22 set { hideChatCommandPrefix = value; } 33 23 } 34 35 24 } 36 25 } 37
Note:
See TracChangeset
for help on using the changeset viewer.