IScriptAPI.cs 326 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace OpenSim.Framework.Interfaces
  5. {
  6. public interface IScriptAPI
  7. {
  8. OSVector3 GetEntityPosition(uint localID);
  9. void SetEntityPosition(uint localID, float x, float y, float z);
  10. uint GetRandomAvatarID();
  11. }
  12. }