mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
Goodbye World
This commit is contained in:
19
OpenSim/OpenSim.World/scripting/IScriptEntity.cs
Normal file
19
OpenSim/OpenSim.World/scripting/IScriptEntity.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using libsecondlife;
|
||||
|
||||
namespace OpenSim.RegionServer.world.scripting
|
||||
{
|
||||
public interface IScriptReadonlyEntity
|
||||
{
|
||||
LLVector3 Pos { get; }
|
||||
string Name { get; }
|
||||
}
|
||||
|
||||
public interface IScriptEntity
|
||||
{
|
||||
LLVector3 Pos { get; set; }
|
||||
string Name { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user