mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
*Reorganized RegionServerCommsManager for OGS and local support
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using libsecondlife;
|
||||
namespace OpenGrid.Framework.Communications.UserServer
|
||||
{
|
||||
public class UserCommsManagerBase
|
||||
{
|
||||
public UserCommsManagerBase()
|
||||
{
|
||||
}
|
||||
|
||||
public virtual UserProfileData GetUserProfile(string name)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
public virtual UserProfileData GetUserProfile(LLUUID avatar_id)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public class UserProfileData
|
||||
{
|
||||
public UserProfileData()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user