ChatTypeEnum.cs 311 B

12345678910111213141516
  1. namespace 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. }