refactor: Make IClientAPI.DebugPacketFormat a property rather than a setter without a getter

This commit is contained in:
Justin Clark-Casey (justincc)
2011-10-17 20:50:29 +01:00
parent 96ff2c63ed
commit 120114e96b
6 changed files with 16 additions and 28 deletions

View File

@@ -1006,11 +1006,11 @@ namespace OpenSim.Framework
event MuteListEntryRemove OnRemoveMuteListEntry;
event GodlikeMessage onGodlikeMessage;
event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdate;
/// <summary>
/// Set the debug level at which packet output should be printed to console.
/// </summary>
void SetDebugPacketLevel(int newDebug);
int DebugPacketLevel { get; set; }
void InPacket(object NewPack);
void ProcessInPacket(Packet NewPack);