Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Runtime.Serialization;
|
---|
4 | using System.Text.RegularExpressions;
|
---|
5 |
|
---|
6 | namespace AllocsFixes.PersistentData
|
---|
7 | {
|
---|
8 | [Serializable]
|
---|
9 | public class Attributes
|
---|
10 | {
|
---|
11 | private bool hideChatCommands;
|
---|
12 | private String hideChatCommandPrefix;
|
---|
13 |
|
---|
14 | public bool HideChatCommands {
|
---|
15 | get {
|
---|
16 | return hideChatCommands;
|
---|
17 | }
|
---|
18 | set {
|
---|
19 | hideChatCommands = value;
|
---|
20 | }
|
---|
21 | }
|
---|
22 |
|
---|
23 | public string HideChatCommandPrefix {
|
---|
24 | get {
|
---|
25 | if (hideChatCommandPrefix == null) {
|
---|
26 | hideChatCommandPrefix = "";
|
---|
27 | }
|
---|
28 | return hideChatCommandPrefix;
|
---|
29 | }
|
---|
30 | set {
|
---|
31 | hideChatCommandPrefix = value;
|
---|
32 | }
|
---|
33 | }
|
---|
34 |
|
---|
35 | }
|
---|
36 | }
|
---|
37 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.