mirror of
https://github.com/opensim/opensim.git
synced 2026-05-30 14:17:12 +08:00
* Implements basic "SEUser" class which implements Avatar/Agent SE functions (primitive).
14 lines
299 B
C#
14 lines
299 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using OpenMetaverse;
|
|
|
|
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
|
{
|
|
interface ISocialEntity
|
|
{
|
|
UUID GlobalID { get; }
|
|
string Name { get; }
|
|
bool IsUser { get; }
|
|
}
|
|
} |