IScriptEntity.cs 391 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using libsecondlife;
  5. namespace OpenSim.RegionServer.world.scripting
  6. {
  7. public interface IScriptReadonlyEntity
  8. {
  9. LLVector3 Pos { get; }
  10. string Name { get; }
  11. }
  12. public interface IScriptEntity
  13. {
  14. LLVector3 Pos { get; set; }
  15. string Name { get; }
  16. }
  17. }