Added overload of SendGenericMessage to LLClientView with string list as parameter. Now modules themselfs don't necessarily need to convert strings to byte arrays. Added this as it was removed in LightShare patch.

This commit is contained in:
Mikko Pallari
2010-04-15 08:23:51 +03:00
committed by Justin Clark-Casey (justincc)
parent 6918446fcd
commit 4e45718833
9 changed files with 47 additions and 0 deletions

View File

@@ -461,6 +461,10 @@ namespace OpenSim.Region.Examples.SimpleModule
}
public void SendGenericMessage(string method, List<string> message)
{
}
public void SendGenericMessage(string method, List<byte[]> message)
{