aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ChatTypeEnum.cs
diff options
context:
space:
mode:
authorlbsa712008-07-08 11:25:18 +0000
committerlbsa712008-07-08 11:25:18 +0000
commitd9b802bb26ee659a68270ac05ea0406389afc883 (patch)
tree54a53c343d14e15a6236a0c36daa228f07ae57b6 /OpenSim/Framework/ChatTypeEnum.cs
parentRegionInfo.configMember can be null for dynamically created regions (diff)
downloadopensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.zip
opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.gz
opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.bz2
opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.xz
* Split out various classes from IClientAPI into their own files, in accordance with code standards
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/ChatTypeEnum.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Framework/ChatTypeEnum.cs b/OpenSim/Framework/ChatTypeEnum.cs
new file mode 100644
index 0000000..afde12e
--- /dev/null
+++ b/OpenSim/Framework/ChatTypeEnum.cs
@@ -0,0 +1,16 @@
1namespace OpenSim.Framework
2{
3 public enum ChatTypeEnum
4 {
5 Whisper = 0,
6 Say = 1,
7 Shout = 2,
8 // 3 is an obsolete version of Say
9 StartTyping = 4,
10 StopTyping = 5,
11 DebugChannel = 6,
12 Region = 7,
13 Owner = 8,
14 Broadcast = 0xFF
15 }
16} \ No newline at end of file