View of /trunk/ModularRex/RexNetwork/IRexClientCore.cs
Parent Directory
|
Revision Log
Revision 144 -
(download)
(annotate)
Tue May 12 08:02:40 2009 UTC (4 years ago) by mikkopa
File size: 1246 byte(s)
Tue May 12 08:02:40 2009 UTC (4 years ago) by mikkopa
File size: 1246 byte(s)
Added the RexSkypeModule. This is very simple module that sends the Skype address to other is if defined.
using System;
using System.Collections.Generic;
using OpenMetaverse;
using OpenSim.Framework;
using ModularRex.RexFramework;
namespace ModularRex.RexNetwork
{
#region Rex ClientView delegate definitions
public delegate void RexGenericMessageDelegate(IClientAPI sender, List<string> parameters);
public delegate void ReceiveRexSkypeStore(RexClientView remoteClient);
public delegate void RexAppearanceDelegate(IClientAPI sender);
public delegate void RexObjectPropertiesDelegate(IClientAPI sender, UUID id, RexObjectProperties props);
public delegate void RexStartUpDelegate(IRexClientCore remoteClient, UUID agentID, string status);
public delegate void RexClientScriptCmdDelegate(IRexClientCore remoteClient, UUID agentID, List<string> parameters);
#endregion
public interface IRexClientCore
{
UUID AgentId { get; }
string RexSkypeURL { get; set; }
string RexAccount { get; set; }
string RexAuthURL { get; set; }
float RexCharacterSpeedMod { get; set; }
float RexVertMovementSpeedMod { get; set; }
event RexStartUpDelegate OnRexStartUp;
event RexClientScriptCmdDelegate OnRexClientScriptCmd;
}
}
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

