aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorTeravus Ovares (Dan Olivares)2010-12-23 13:17:55 -0500
committerTeravus Ovares (Dan Olivares)2010-12-23 13:17:55 -0500
commitd829580e5e3fa1db760dc764c0ca76e65dd9b4c8 (patch)
treea6b530c63a0f59ebf1c016f52fe511fd01fc438e /OpenSim/Framework/IClientAPI.cs
parent* Cleanup from a commit a while ago. (diff)
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-d829580e5e3fa1db760dc764c0ca76e65dd9b4c8.zip
opensim-SC_OLD-d829580e5e3fa1db760dc764c0ca76e65dd9b4c8.tar.gz
opensim-SC_OLD-d829580e5e3fa1db760dc764c0ca76e65dd9b4c8.tar.bz2
opensim-SC_OLD-d829580e5e3fa1db760dc764c0ca76e65dd9b4c8.tar.xz
Merge branch 'master' of ssh://MyConnection/var/git/opensim
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 6bca6eb..21ffa9a 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -574,11 +574,13 @@ namespace OpenSim.Framework
574 { 574 {
575 public ISceneEntity Entity; 575 public ISceneEntity Entity;
576 public PrimUpdateFlags Flags; 576 public PrimUpdateFlags Flags;
577 public float TimeDilation;
577 578
578 public EntityUpdate(ISceneEntity entity, PrimUpdateFlags flags) 579 public EntityUpdate(ISceneEntity entity, PrimUpdateFlags flags, float timedilation)
579 { 580 {
580 Entity = entity; 581 Entity = entity;
581 Flags = flags; 582 Flags = flags;
583 TimeDilation = timedilation;
582 } 584 }
583 } 585 }
584 586